結果

問題 No.233 めぐるはめぐる (3)
ユーザー TsubajiroTsubajiro
提出日時 2022-05-19 00:36:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 553 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,412 KB
最終ジャッジ日時 2024-09-17 04:52:15
合計ジャッジ時間 10,468 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
22,896 KB
testcase_01 AC 212 ms
22,076 KB
testcase_02 AC 121 ms
15,608 KB
testcase_03 AC 228 ms
21,924 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 861 ms
23,152 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 29 ms
11,008 KB
testcase_12 AC 214 ms
22,004 KB
testcase_13 AC 318 ms
23,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(6):
    if i<5:
        s5.append(i)
    b6.append(i)

import itertools
ss = list(itertools.permutations(s))
bb = list(itertools.permutations(b))
#print(ss)
#sprint(ss)
flag=False
for i in ss:
    for j in bb:
        ca = ""
        for k in range(len(i)):
            ca+=i[k]+j[k]
        if ca not in candi:
            print(ca)
            exit()
print("No")
0