結果

問題 No.233 めぐるはめぐる (3)
ユーザー 158b158b
提出日時 2015-06-28 14:19:18
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 214 ms / 1,000 ms
コード長 1,027 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 84,120 KB
実行使用メモリ 13,528 KB
最終ジャッジ日時 2023-09-22 03:43:41
合計ジャッジ時間 5,195 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
13,340 KB
testcase_01 AC 90 ms
9,644 KB
testcase_02 AC 37 ms
6,524 KB
testcase_03 AC 97 ms
10,328 KB
testcase_04 AC 210 ms
13,480 KB
testcase_05 AC 182 ms
13,528 KB
testcase_06 AC 177 ms
13,516 KB
testcase_07 AC 214 ms
13,512 KB
testcase_08 AC 205 ms
13,492 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 88 ms
9,880 KB
testcase_13 AC 162 ms
13,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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[6] = {'b','g','m','n','r','*'};
	bool flg = false;
	
	cin >> n;
	
	rep(i,n){
		cin >> in;
		s.insert(in);
	}
	
	do{
		do{
			check = "";
			rep(i,6){
				if(check2[i] != '*') check += check2[i];
				check += check1[i];
			}
			
			if(!s.count(check)){
				cout << check << endl;
				return 0;
			}
		
		}while( next_permutation(check2, check2 + 6));
	}while( next_permutation(check1, check1 + 6));
	
	
	cout << "NO" << endl;
    
    return 0;
}
0