結果

問題 No.233 めぐるはめぐる (3)
ユーザー tnoda_tnoda_
提出日時 2015-09-14 19:38:59
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 336 ms / 1,000 ms
コード長 487 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 89,268 KB
最終ジャッジ日時 2024-07-19 06:26:40
合計ジャッジ時間 5,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
87,340 KB
testcase_01 AC 150 ms
86,912 KB
testcase_02 AC 118 ms
79,872 KB
testcase_03 AC 147 ms
86,784 KB
testcase_04 AC 314 ms
88,880 KB
testcase_05 AC 305 ms
89,028 KB
testcase_06 AC 274 ms
89,008 KB
testcase_07 AC 336 ms
89,136 KB
testcase_08 AC 335 ms
89,268 KB
testcase_09 AC 90 ms
75,392 KB
testcase_10 AC 89 ms
75,264 KB
testcase_11 AC 89 ms
75,520 KB
testcase_12 AC 146 ms
87,040 KB
testcase_13 AC 169 ms
87,348 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 += cs[i] + vs[i]
        for i in xrange(len(base)+1):
            name = base[:i] + vs[5] + base[i:]
            if name not in S:
                print(name)
                quit()
print('NO')
0