-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathCHEFROUT.cpp
59 lines (52 loc) · 1.2 KB
/
CHEFROUT.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ~~~~~~~© Aashutosh Rathi~~~~~~
// ~~~~~~~~aashutosh001~~~~~~~~~~
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Result = Correct Answer
#include <bits/stdc++.h>
#include <stdio.h>
using namespace std;
#define mod(x) x%1000000007;
#define MIN(n1, n2 ) ((n1) > (n2) ? (n2) : (n1))
#define MAX(n1, n2 ) ((n1) > (n2) ? (n1) : (n2))
#define MID(s, e) (s+(e-s)/2)
#define FOR(i, a, b) int i; for(i=(a);i<(b);i++)
#define FORD(i, a, b) int i; for(i=(a);i>(b);i--)
#define show(a) for(i=0;i<sizeof(a);i++) cout<<a[i]<<" ";
#define get(a) for(i=0;i<sizeof(a);i++) cin>>a[i];
#define scanint(a) scanf("%d",&a)
#define scanLLD(a) scanf("%lld",&a)
#define scanstr(s) scanf("%s",s)
#define scanline(l) scanf(" %[^\n]",l);
typedef long int BIG;
typedef long long PAPA;
int main()
{
std::ios_base::sync_with_stdio(false);
int t;
cin >> t;
while(t--) {
string s;
cin >> s;
int i, c = 0;
for(i=0; i<s.size(); i++) {
if(s[i] == 'E') {
if(s[i+1] == 'C') {
cout << "no\n";
c++;
break;
}
}
else if(s[i] == 'S') {
if(s[i+1] == 'C' || s[i+1] == 'E') {
cout << "no\n";
c++;
break;
}
}
}
if(c==0)
cout << "yes\n";
}
return 0;
}