結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | E31415926 |
提出日時 | 2017-02-21 21:12:54 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 190 ms / 1,000 ms |
コード長 | 761 bytes |
コンパイル時間 | 2,124 ms |
コンパイル使用メモリ | 174,616 KB |
実行使用メモリ | 13,696 KB |
最終ジャッジ日時 | 2024-12-30 15:05:03 |
合計ジャッジ時間 | 5,599 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
13,184 KB |
testcase_01 | AC | 82 ms
9,728 KB |
testcase_02 | AC | 36 ms
6,656 KB |
testcase_03 | AC | 92 ms
10,624 KB |
testcase_04 | AC | 183 ms
13,568 KB |
testcase_05 | AC | 165 ms
13,696 KB |
testcase_06 | AC | 150 ms
13,440 KB |
testcase_07 | AC | 190 ms
13,568 KB |
testcase_08 | AC | 182 ms
13,440 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 80 ms
9,856 KB |
testcase_13 | AC | 136 ms
13,312 KB |
ソースコード
#include<bits/stdc++.h>#define int long longusing namespace std;#define rep(i,n) for(int i=0;i<(n);++i)#define INF (1ll<<60)typedef pair<int, int> pii;#define FI first#define SE second#define all(s) s.begin(),s.end()#define RREP(i,n) for(int i=(n)-1;i>=0;--i)int N;set<string> S;void rekkyo() {string bo = "aaeiuu";string si = "bgmnr";do {do {rep(i,5){string t;rep(j,5){if (i == j)t += bo[5];t += si[j];t += bo[j];}if (!S.count(t)) {cout << t << endl;return;}}} while (next_permutation(all(si)));} while (next_permutation(all(bo)));cout << "NO" << endl;}signed main() {cin >> N;rep(i,N){string s;cin >> s;S.insert(s);}rekkyo();}