結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | btk |
提出日時 | 2015-06-26 23:13:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,116 bytes |
コンパイル時間 | 738 ms |
コンパイル使用メモリ | 95,740 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-07-07 18:25:26 |
合計ジャッジ時間 | 3,976 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 99 ms
13,056 KB |
testcase_01 | AC | 58 ms
9,728 KB |
testcase_02 | AC | 28 ms
6,944 KB |
testcase_03 | AC | 66 ms
10,240 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 104 ms
13,568 KB |
testcase_08 | AC | 101 ms
13,312 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 61 ms
9,728 KB |
testcase_13 | AC | 100 ms
13,312 KB |
ソースコード
#include<iostream> #include<fstream> #include<sstream> #include<string> #include<cstdio> #include<cstdlib> #include<cstring> #include<ctime> #include<stack> #include<queue> #include<set> #include<map> #include<vector> #include<list> #include<algorithm> #include<utility> #include<complex> #include<functional> using namespace std; #define input_init stringstream ss; string strtoken, token; istringstream is #define input_line getline(cin, strtoken);is.str(strtoken);is.clear(istringstream::goodbit) #define input_token(num) ss.str(""); ss.clear(stringstream::goodbit); getline(is, token, ','); ss << token; ss >> num const int d[] = { 0, 2, 4, 6, 8, 10 }; int main(void){ set<string> memo; int N; cin >> N; for (int i = 0; i < N; i++){ string t; cin >> t; memo.insert(t); } string T = "inabameguru"; int ar[] = { 0, 2, 4, 6, 8, 10 }; do{ string tmp = "inabameguru"; for (int i = 0; i < 6; i++)tmp[d[i]] = T[ar[i]]; //cout << (" "+!i) << ar[i]; if (memo.count(tmp) == 0){ cout << tmp << endl; return 0; } } while (next_permutation(ar, ar+6)); cout << "NO" << endl; return(0); }