結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | 158b |
提出日時 | 2015-06-28 13:47:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,100 bytes |
コンパイル時間 | 662 ms |
コンパイル使用メモリ | 91,492 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-07-07 20:28:46 |
合計ジャッジ時間 | 3,850 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 101 ms
13,184 KB |
testcase_01 | AC | 59 ms
9,728 KB |
testcase_02 | AC | 28 ms
6,944 KB |
testcase_03 | AC | 64 ms
10,496 KB |
testcase_04 | AC | 108 ms
13,568 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 113 ms
13,568 KB |
testcase_08 | AC | 112 ms
13,568 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 60 ms
9,728 KB |
testcase_13 | AC | 101 ms
13,440 KB |
ソースコード
#include <iostream> #include <algorithm> #include <functional> #include <string> #include <climits> #include <vector> #include <numeric> #include <complex> #include <map> #include <bitset> #include <set> using namespace std; //#define __int64 long long #define long __int64 #define REP(i,a,b) for(int i=a;i<b;i++) #define rep(i,n) REP(i,0,n) const int Vecy[4] = {0,-1,0,1}; const int Vecx[4] = {1,0,-1,0}; int main(){ int n; set<string> s; string in; string data1 = "aaeiuu"; string data2 = "bgmnr"; string check; char check1[6] = {'a','a','e','i','u','u'}; char check2[5] = {'b','g','m','n','r'}; bool flg = false; cin >> n; rep(i,n){ cin >> in; s.insert(in); } do{ rep(i,5){ check2[i] = data2[i]; } do{ check = ""; rep(i,5){ check += check1[i]; check += check2[i]; } check += check1[5]; if(!s.count(check)){ cout << check << endl; flg = true; } }while( next_permutation(check2, check2 + 5) && !flg); }while( next_permutation(check1, check1 + 6) && !flg); if(!flg){ cout << "NO" << endl; } return 0; }