結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | kimiyuki |
提出日時 | 2016-01-14 17:49:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 916 bytes |
コンパイル時間 | 912 ms |
コンパイル使用メモリ | 79,456 KB |
実行使用メモリ | 12,644 KB |
最終ジャッジ日時 | 2024-09-19 19:03:21 |
合計ジャッジ時間 | 3,491 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 67 ms
12,388 KB |
testcase_01 | AC | 41 ms
8,876 KB |
testcase_02 | AC | 20 ms
6,944 KB |
testcase_03 | AC | 48 ms
10,544 KB |
testcase_04 | AC | 76 ms
12,644 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 73 ms
12,640 KB |
testcase_08 | AC | 76 ms
12,520 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 42 ms
9,004 KB |
testcase_13 | AC | 68 ms
12,516 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <unordered_set> #define repeat(i,n) for (int i = 0; (i) < (n); ++(i)) using namespace std; int main() { int n; cin >> n; unordered_set<string> s; repeat (i,n) { string t; cin >> t; s.insert(t); } string vowels = "iaaeuu"; sort(vowels.begin(), vowels.end()); do { string consonants = "nbmgr"; sort(consonants.begin(), consonants.end()); do { string t; repeat (i, vowels.length() + consonants.length()) { t += (i % 2 == 0 ? vowels : consonants)[i / 2]; } if (not s.count(t)) { cout << t << endl; return 0; } } while (next_permutation(consonants.begin(), consonants.end())); } while (next_permutation(vowels.begin(), vowels.end())); cout << "NO" << endl; return 0; }