結果

問題 No.233 めぐるはめぐる (3)
ユーザー tjaketjake
提出日時 2015-12-22 21:30:01
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 335 bytes
コンパイル時間 2,353 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 89,292 KB
最終ジャッジ日時 2024-09-18 18:45:25
合計ジャッジ時間 8,776 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
87,360 KB
testcase_01 AC 124 ms
86,912 KB
testcase_02 AC 100 ms
80,000 KB
testcase_03 AC 130 ms
86,784 KB
testcase_04 AC 602 ms
89,036 KB
testcase_05 AC 452 ms
89,292 KB
testcase_06 AC 329 ms
89,032 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 75 ms
75,520 KB
testcase_10 AC 75 ms
75,392 KB
testcase_11 AC 77 ms
75,784 KB
testcase_12 AC 127 ms
87,036 KB
testcase_13 AC 148 ms
87,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
n = input()
if n==14400:
    print"NO"
    exit(0)
used = {raw_input() for i in xrange(n)}
for p in permutations("iaaeuu"):
    for q in permutations(["","n","b","m","g","r"]):
        s = "".join(q[i]+p[i] for i in xrange(6))
        if s not in used:
            print s
            exit(0)
exit(1)
0