結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | not_522 |
提出日時 | 2015-08-20 14:27:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 592 bytes |
コンパイル時間 | 1,481 ms |
コンパイル使用メモリ | 171,720 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 10:52:15 |
合計ジャッジ時間 | 6,097 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
6,816 KB |
testcase_01 | AC | 46 ms
6,944 KB |
testcase_02 | AC | 29 ms
6,940 KB |
testcase_03 | AC | 50 ms
6,940 KB |
testcase_04 | AC | 66 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 70 ms
6,944 KB |
testcase_08 | AC | 66 ms
6,940 KB |
testcase_09 | AC | 9 ms
6,940 KB |
testcase_10 | AC | 9 ms
6,944 KB |
testcase_11 | AC | 9 ms
6,944 KB |
testcase_12 | AC | 46 ms
6,940 KB |
testcase_13 | AC | 67 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { string a = "iaaeuu", b = "nbmgr"; sort(a.begin(), a.end()); sort(b.begin(), b.end()); set<string> s; do { do { string str = a; for (size_t i = 0; i < b.size(); ++i) str.insert(2 * i + 1, 1, b[i]); s.insert(str); } while (next_permutation(b.begin(), b.end())); } while (next_permutation(a.begin(), a.end())); int n; cin >> n; for (int i = 0; i < n; ++i) { string str; cin >> str; s.erase(str); } if (s.empty()) cout << "NO" << endl; else cout << *(s.begin()) << endl; }