結果

問題 No.233 めぐるはめぐる (3)
ユーザー titiatitia
提出日時 2022-10-30 01:09:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 491 ms / 1,000 ms
コード長 518 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 104,964 KB
最終ジャッジ日時 2024-07-06 21:06:41
合計ジャッジ時間 8,871 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 465 ms
104,648 KB
testcase_01 AC 437 ms
99,088 KB
testcase_02 AC 421 ms
93,372 KB
testcase_03 AC 454 ms
99,944 KB
testcase_04 AC 481 ms
104,964 KB
testcase_05 AC 488 ms
104,632 KB
testcase_06 AC 489 ms
104,556 KB
testcase_07 AC 491 ms
104,384 KB
testcase_08 AC 474 ms
104,876 KB
testcase_09 AC 385 ms
90,668 KB
testcase_10 AC 404 ms
90,780 KB
testcase_11 AC 390 ms
90,608 KB
testcase_12 AC 443 ms
100,024 KB
testcase_13 AC 480 ms
104,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

X=list(permutations("nbmgr"))
Y=list(permutations("iaaeuu"))


S=set()

for x in X:
    for y in Y:
        A=[]

        for i in range(5):
            A.append(x[i])
            A.append(y[i])

        for i in range(len(A)):
            S.add("".join(A[:i]+[y[-1]]+A[i:]))

N=int(input())
LIST=set([input() for i in range(N)])

if len(LIST)==len(S):
    print("NO")
else:
    for s in S:
        if s in LIST:
            pass
        else:
            print(s)
            break
0