結果

問題 No.233 めぐるはめぐる (3)
ユーザー tnoda_tnoda_
提出日時 2015-09-10 12:50:59
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 534 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 16,928 KB
最終ジャッジ日時 2024-07-19 05:12:41
合計ジャッジ時間 8,829 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
16,672 KB
testcase_01 AC 115 ms
12,192 KB
testcase_02 AC 66 ms
10,272 KB
testcase_03 AC 130 ms
16,672 KB
testcase_04 AC 972 ms
16,796 KB
testcase_05 AC 939 ms
16,928 KB
testcase_06 AC 790 ms
16,540 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 11 ms
6,272 KB
testcase_10 AC 10 ms
6,272 KB
testcase_11 AC 11 ms
6,272 KB
testcase_12 AC 112 ms
12,448 KB
testcase_13 AC 180 ms
16,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

N = input()
S = set([])
for i in xrange(N):
    S.add(raw_input())

# inabameguru
cons = list("nbmgr")
vow = list("iaaeuu")
for cs in permutations(cons):
    for vs in permutations(vow):
        base = []
        for i in xrange(len(cs)):
            base.append(cs[i])
            base.append(vs[i])
        for i in xrange(len(base)+1):
            name = base[:i] + [vs[5]] + base[i:]
            if ''.join(name) not in S:
                print(''.join(name))
                quit()
print('NO')
0