結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
13,084 KB
testcase_01 AC 89 ms
9,740 KB
testcase_02 AC 37 ms
6,560 KB
testcase_03 AC 104 ms
10,344 KB
testcase_04 AC 167 ms
13,528 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 196 ms
13,528 KB
testcase_08 AC 174 ms
13,532 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 89 ms
9,720 KB
testcase_13 AC 159 ms
13,448 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[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;
}
0