結果
問題 | No.380 悪の台本 |
ユーザー | paruki |
提出日時 | 2016-06-18 00:04:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,952 bytes |
コンパイル時間 | 1,797 ms |
コンパイル使用メモリ | 171,364 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-06 22:48:59 |
合計ジャッジ時間 | 2,306 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 5 ms
5,248 KB |
testcase_05 | AC | 15 ms
5,248 KB |
testcase_06 | AC | 14 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 5 ms
5,248 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vll; string OK = "CORRECT (maybe)", NG = "WRONG!"; int who = -1; string tak[5] = {"nyo","nyu","","gema","pyo"}; int f(string &li){ if(li[0] != ' ')return 0; each(c, li)c = tolower(c); if(who == 2){ each(c, li)if(isalnum(c)){ return 1; } return 0; } for(int i = sz(li) - sz(tak[who]); i >= 0; --i){ if(i + sz(tak[who]) + 3 < sz(li)){ return 0; } auto sub = li.substr(i, sz(tak[who])); if(sub == tak[who]){ FOR(j, i + sz(tak[who]), sz(li)){ if(isalnum(li[j]))return 0; } return 1; } } return 0; } void solve(string &li){ if(sz(li) < 5){ cout << NG << endl; return; } string s4 = li.substr(0, 4); string s5 = li.substr(0, 5); if(s4 == "digi"){ li = li.substr(4); who = 0; } else if(s5 == "petit"){ li = li.substr(5); who = 1; } else if(s4 == "rabi"){ li = li.substr(4); who = 2; } else if(s4 == "gema"){ li = li.substr(4); who = 3; } else if(s4 == "piyo"){ li = li.substr(4); who = 4; } else{ cout << NG << endl; return; } cout << (f(li) ? OK : NG) << endl; } int main(){ ios::sync_with_stdio(0); cin.tie(0); string li; while(getline(cin, li)){ if(li == "")break; solve(li); } }