結果

問題 No.233 めぐるはめぐる (3)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-03-02 22:15:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 538 ms / 1,000 ms
コード長 460 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,600 KB
最終ジャッジ日時 2024-09-24 13:34:57
合計ジャッジ時間 8,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
37,632 KB
testcase_01 AC 425 ms
39,016 KB
testcase_02 AC 331 ms
28,164 KB
testcase_03 AC 445 ms
39,600 KB
testcase_04 AC 519 ms
37,892 KB
testcase_05 AC 538 ms
37,904 KB
testcase_06 AC 521 ms
37,804 KB
testcase_07 AC 528 ms
37,792 KB
testcase_08 AC 517 ms
37,796 KB
testcase_09 AC 241 ms
22,940 KB
testcase_10 AC 239 ms
22,932 KB
testcase_11 AC 243 ms
22,936 KB
testcase_12 AC 432 ms
38,992 KB
testcase_13 AC 517 ms
37,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3
from itertools import permutations, product
who = 'inabameguru'
m = len(who)
vow = set(map(''.join, permutations(who[::2])))
con = set(map(''.join, permutations(who[1::2])))
sett = set()
for p, q in product(con, vow):
    x = ''.join(map(''.join, zip(p, q[:-1])))
    for i in range(m):
        sett.add(x[:i] + q[-1] + x[i:])
n = int(input())
s = set(input() for _ in range(n))
sett -= s
res = 'NO'
if sett:
    res = sett.pop()
print(res)
0