結果

問題 No.233 めぐるはめぐる (3)
ユーザー 沙耶花沙耶花
提出日時 2021-11-18 20:06:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 808 bytes
コンパイル時間 4,163 ms
コンパイル使用メモリ 271,008 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-06-08 07:55:03
合計ジャッジ時間 7,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
13,184 KB
testcase_01 AC 76 ms
9,728 KB
testcase_02 AC 34 ms
6,784 KB
testcase_03 AC 78 ms
10,496 KB
testcase_04 AC 161 ms
13,568 KB
testcase_05 AC 132 ms
13,568 KB
testcase_06 AC 123 ms
13,568 KB
testcase_07 AC 158 ms
13,440 KB
testcase_08 AC 167 ms
13,568 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 69 ms
9,984 KB
testcase_13 AC 122 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint1000000007;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001



int main(){
	
	string bo = "iaaeuu";
	string si = "nbmgr";
	
	sort(bo.begin(),bo.end());
	sort(si.begin(),si.end());
	
	int n;
	cin>>n;
	
	set<string> s;
	rep(i,n){
		string t;
		cin>>t;
		s.insert(t);
	}
	
	do{
		sort(si.begin(),si.end());
		do{
			string t = "";
			rep(i,5){
				t += si[i];
				t += bo[i];
			}
			rep(i,6){
				string tt = t;
				tt.insert(tt.begin()+i*2,bo.back());
				if(s.count(tt))continue;
				cout<<tt<<endl;
				return 0;
			}
		}
		while(next_permutation(si.begin(),si.end()));
	}while(next_permutation(bo.begin(),bo.end()));
	
	cout<<"NO"<<endl;
	
	return 0;
}
0