結果
問題 | No.380 悪の台本 |
ユーザー | aaaaaaiu |
提出日時 | 2019-08-26 19:21:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,508 bytes |
コンパイル時間 | 2,975 ms |
コンパイル使用メモリ | 214,688 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 19:17:23 |
合計ジャッジ時間 | 3,815 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 7 ms
5,248 KB |
testcase_05 | AC | 18 ms
5,248 KB |
testcase_06 | AC | 17 ms
5,248 KB |
testcase_07 | AC | 137 ms
5,248 KB |
testcase_08 | AC | 5 ms
5,248 KB |
testcase_09 | AC | 8 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; bool issign(char c) { return !isalpha(c)&&!isdigit(c); } string tolowers(string s) { for (char& c:s) c=tolower(c); return s; } int main() { string s; map<string,string> guys={{"digi","nyo"},{"petit","nyu"},{"rabi",""},{"gema","gema"},{"piyo","pyo"}}; while (getline(cin,s)) { int n=s.size(); int i=0; string name; while (i<n&&s[i]!=' ') { name+=s[i]; i++; } if (guys.find(name)==guys.end()) { puts("WRONG!"); continue; } i++; s=s.substr(i); if (name=="rabi") { bool f=0; for (char c:s) { if (isalpha(c)||isdigit(c)) { f=1; break; } } if (f) puts("CORRECT (maybe)"); else puts("WRONG!"); continue; } int r=s.size(); r--; int cnt=0; while (0<=r&&issign(s[r])) { cnt++; r--; } if (cnt>3) { puts("WRONG!"); continue; } string suf=guys[name]; int l=r-suf.size()+1; if (l<0) { puts("WRONG!"); continue; } if (tolowers(s.substr(l,suf.size()))==suf) { puts("CORRECT (maybe)"); } else { puts("WRONG!"); } } return 0; }