結果
問題 | No.380 悪の台本 |
ユーザー | mamekin |
提出日時 | 2016-07-18 17:01:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,554 bytes |
コンパイル時間 | 917 ms |
コンパイル使用メモリ | 102,524 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-06 23:07:35 |
合計ジャッジ時間 | 2,027 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 7 ms
5,248 KB |
testcase_05 | AC | 18 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 5 ms
5,248 KB |
testcase_09 | RE | - |
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> using namespace std; int main() { for(;;){ string name; if(!(cin >> name)) break; string s; getline(cin, s); int n = s.size(); for(int i=0; i<n; ++i) s[i] = tolower(s[i]); bool correct = false; if(name == "rabi"){ for(int i=0; i<n; ++i){ if(isdigit(s[i]) || isalpha(s[i])) correct = true; } } else{ string gobi; if(name == "digi") gobi = "nyo"; else if(name == "petit") gobi = "nyu"; else if(name == "gema") gobi = "gema"; else gobi = "pyo"; int i = n - 1; while(i >= 0 && !isdigit(s[i]) && !isalpha(s[i])) -- i; if(n - 1 - i <= 3 && i - gobi.size() + 1 >= 0 && s.substr(i - gobi.size() + 1, gobi.size()) == gobi) correct = true; } if(correct) cout << "CORRECT (maybe)" << endl; else cout << "WRONG!" << endl; } return 0; }