結果

問題 No.233 めぐるはめぐる (3)
ユーザー TsubajiroTsubajiro
提出日時 2022-05-19 00:45:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-09-17 05:01:42
合計ジャッジ時間 4,467 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
85,628 KB
testcase_01 AC 103 ms
83,004 KB
testcase_02 AC 74 ms
79,520 KB
testcase_03 AC 108 ms
83,268 KB
testcase_04 AC 287 ms
85,760 KB
testcase_05 AC 234 ms
85,620 KB
testcase_06 AC 206 ms
85,592 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 35 ms
58,752 KB
testcase_10 AC 34 ms
58,136 KB
testcase_11 AC 37 ms
58,196 KB
testcase_12 AC 100 ms
82,932 KB
testcase_13 AC 126 ms
85,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = []
candi = set()
for _ in range(N):
    candi.add(input())
s = ["n","b","m","g","r",""]
b = ["i","a","a","e","u","u"]
#print(candi)

import itertools
ss = list(itertools.permutations(s))
bb = list(itertools.permutations(b))

for i in ss:
    for j in bb:
        ca = ""
        for k in range(6):
            ca+=i[k]+j[k]
        if ca not in candi:
            print(ca)
            exit()
print("No")
0