結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | ciel |
提出日時 | 2015-06-27 00:04:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 91 ms / 1,000 ms |
コード長 | 566 bytes |
コンパイル時間 | 731 ms |
コンパイル使用メモリ | 78,144 KB |
実行使用メモリ | 12,644 KB |
最終ジャッジ日時 | 2024-07-07 19:26:57 |
合計ジャッジ時間 | 3,269 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
12,388 KB |
testcase_01 | AC | 41 ms
8,880 KB |
testcase_02 | AC | 20 ms
5,920 KB |
testcase_03 | AC | 47 ms
10,412 KB |
testcase_04 | AC | 74 ms
12,516 KB |
testcase_05 | AC | 80 ms
12,516 KB |
testcase_06 | AC | 79 ms
12,644 KB |
testcase_07 | AC | 91 ms
12,640 KB |
testcase_08 | AC | 90 ms
12,644 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 41 ms
9,008 KB |
testcase_13 | AC | 65 ms
12,388 KB |
ソースコード
#include <iostream> #include <string> #include <unordered_set> #include <vector> #include <algorithm> using namespace std; int main(){ int N; unordered_set<string>se; for(cin>>N;N--;){ string s; cin>>s; se.insert(s); } vector<char> x={0,'b','g','m','n','r'},y={'a','a','e','i','u','u'}; do{ do{ string s; for(int i=0;i<6;i++){ if(x[i])s+=x[i]; s+=y[i]; } if(se.find(s)==se.end()){ cout<<s<<endl; return 0; } }while(next_permutation(y.begin(),y.end())); }while(next_permutation(x.begin(),x.end())); cout<<"NO"<<endl; }