結果

問題 No.233 めぐるはめぐる (3)
ユーザー E31415926E31415926
提出日時 2017-02-21 21:12:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 1,000 ms
コード長 761 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 175,136 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-06-09 18:09:59
合計ジャッジ時間 6,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
13,184 KB
testcase_01 AC 80 ms
9,728 KB
testcase_02 AC 37 ms
6,656 KB
testcase_03 AC 91 ms
10,496 KB
testcase_04 AC 185 ms
13,696 KB
testcase_05 AC 163 ms
13,696 KB
testcase_06 AC 160 ms
13,568 KB
testcase_07 AC 193 ms
13,568 KB
testcase_08 AC 196 ms
13,568 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 94 ms
9,856 KB
testcase_13 AC 165 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using 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();
}
0