結果

問題 No.233 めぐるはめぐる (3)
ユーザー 👑 KazunKazun
提出日時 2021-07-16 19:59:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 1,000 ms
コード長 397 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 96,852 KB
最終ジャッジ日時 2024-07-06 06:37:19
合計ジャッジ時間 7,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 350 ms
96,348 KB
testcase_01 AC 335 ms
95,708 KB
testcase_02 AC 305 ms
95,000 KB
testcase_03 AC 338 ms
94,524 KB
testcase_04 AC 349 ms
96,032 KB
testcase_05 AC 359 ms
96,096 KB
testcase_06 AC 347 ms
95,960 KB
testcase_07 AC 368 ms
95,964 KB
testcase_08 AC 349 ms
96,036 KB
testcase_09 AC 280 ms
93,628 KB
testcase_10 AC 272 ms
93,636 KB
testcase_11 AC 265 ms
87,108 KB
testcase_12 AC 345 ms
95,884 KB
testcase_13 AC 348 ms
96,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

N=int(input())
S=set()

for _ in range(N):
    S.add(input())

T=set()
for a in permutations(["i","a","a","e","u","u"]):
    for b in permutations(["n","b","m","g","r",""]):
        X=[""]*12
        for i in range(6):
            X[2*i  ]=b[i]
            X[2*i+1]=a[i]

        T.add("".join(X))

U=T-S

if U:
    x=U.pop()
    print(x)
else:
    print("NO")
0