結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | pekempey |
提出日時 | 2015-06-28 22:38:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 204 ms / 1,000 ms |
コード長 | 984 bytes |
コンパイル時間 | 1,590 ms |
コンパイル使用メモリ | 170,500 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-07-07 20:55:19 |
合計ジャッジ時間 | 5,316 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
13,056 KB |
testcase_01 | AC | 78 ms
9,600 KB |
testcase_02 | AC | 34 ms
6,940 KB |
testcase_03 | AC | 89 ms
10,368 KB |
testcase_04 | AC | 200 ms
13,440 KB |
testcase_05 | AC | 165 ms
13,440 KB |
testcase_06 | AC | 159 ms
13,440 KB |
testcase_07 | AC | 204 ms
13,568 KB |
testcase_08 | AC | 197 ms
13,440 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 82 ms
9,728 KB |
testcase_13 | AC | 149 ms
13,312 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); i++) #define rep2(i, a, b) for (int i = (a); i < (b); i++) #define rrep(i, n) for (int i = (n) - 1; i >= 0; i--) #define rrep2(i, a, b) for (int i = (a) - 1; i >= (b); i--) using namespace std; typedef long long ll; const ll inf = 1e9; const ll mod = 1e9 + 7; int main() { int N; cin >> N; set<string> s; rep (i, N) { string temp; cin >> temp; s.insert(temp); } string a = "nbmgr~"; string b = "iaaeuu"; sort(a.begin(), a.end()); sort(b.begin(), b.end()); do { do { string w; rep (i, 6) { if (a[i] != '~') w += a[i]; w += b[i]; } if (!s.count(w)) { cout << w << endl; return 0; } } while (next_permutation(b.begin(), b.end())); } while (next_permutation(a.begin(), a.end())); cout << "NO" << endl; }