#ifdef __GNUC__ #pragma GCC optimize ("O3") #pragma GCC target ("avx") #endif #define _USE_MATH_DEFINES #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include//assert(); #include ///////// #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define P(p) cout<<(p)< #define MAIN_INIT std::cin.tie(0); \ std::ios::sync_with_stdio(false);\ std::cout << std::fixed;//小数を10進数表示 ///////// #ifdef getchar_unlocked #define mygc(c) (c)=getchar_unlocked() #else #define mygc(c) (c)=getchar() #endif #ifdef putchar_unlocked #define mypc(c) putchar_unlocked(c) #else #define mypc(c) putchar(c) #endif ///////// typedef long long LL; typedef long double LD; typedef unsigned long long ULL; ///////// using namespace::std; ///////// #ifdef _DEBUG #define DEBUG_BOOL(b) assert(b) #else #define DEBUG_BOOL(b) #endif /////数値読み込み #define ENABLE_READER_ON(T) \ inline void reader(T &x){int k;x = 0;bool flag = true;\ while(true){mygc(k);\ if( k == '-'){flag = false;break;}if('0' <= k && k <= '9'){x = k - '0';break;}\ }\ if( flag ){while(true){mygc(k);if( k<'0' || '9' inline T gcd(T a, T b){return b == 0 ? a : gcd(b, a % b);} // 最小公倍数 template inline T lcm(T a, T b){return a * b / gcd(a, b);} //////////////////////////////// bool check(string& str,string& ter,int H,int B){ //strが答えの時 int h=0; int b=0; for(int i=0;i<4;++i){ char c = ter[i]; for(int j=0;j<4;++j){ if( c == str[j] ){ if( i == j ){++h;} else{++b;} break; } } } if( h == H && b == B){return true;} return false; } char komoji(char in){ if( 'A'<=in && in <= 'Z' ){ return in+('a'-'A'); } return in; } bool isKigou(char in){ if( ('0' <= in && in <= '9') || ('A' <= in && in <= 'Z') || ('a' <= in && in <= 'z') ){ return false; } return true; } inline void solve(){ char c; c = getchar(); string line; string name; string bun; int len; bool flag,check; string nameList[5]={"digi","petit","gema","piyo","rabi"}; string lastList[5]={"nyo","nyu","gema","pyo",""}; vector ans; while( !(c == -1) ){// flag = false; line = ""; while( !(c == 0x0a || c == 0x1A) ){//改行まで line = line + c; c = getchar(); } if( c != 0x1A ){ c = getchar();//改行を捨てる。 } name = ""; //名前判定 for(int i=0;i<5;++i){ if( line.size() >= nameList[i].size() ){ if( line.substr(0,nameList[i].size()) == nameList[i] ){ name = nameList[i]; flag = true; break; } }else{ flag = false; break; } } if( flag == false ){//1行に名前が無い。 ans.push_back(flag); continue; } //スペース判定。 flag = false; if( name.size() < line.size() ){ if( line[ name.size() ] == 0x20 ){//スペース flag = true; } } if( flag == false ){//名前の後がスペースでない ans.push_back(flag); continue; } bun = ""; //セリフ処理 bun = line.substr(name.size()+1,line.size()); //セリフ全てを小文字に変換 std::transform(bun.begin(), bun.end(), bun.begin(), komoji ); check = false; for(int i=0;i<4;++i){ if( name == nameList[i] ){ len = bun.size(); flag = false; int pos = len-3-lastList[i].size(); if( pos < 0 ){pos = 0;} for(;pos::iterator itr,end; itr = ans.begin(); end = ans.end(); for(;itr != end;++itr){ if(*itr){ writer("CORRECT (maybe)");writer('\n'); }else{ writer("WRONG!");writer('\n'); } } } int main(void){ MAIN_INIT; cout << setprecision(16);//小数をいっぱい表示する。16? solve(); return 0; }