結果

問題 No.233 めぐるはめぐる (3)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-03-02 22:34:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 1,000 ms
コード長 465 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 95,604 KB
最終ジャッジ日時 2024-09-24 13:37:06
合計ジャッジ時間 6,089 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
95,344 KB
testcase_01 AC 232 ms
91,880 KB
testcase_02 AC 196 ms
88,432 KB
testcase_03 AC 234 ms
92,656 KB
testcase_04 AC 276 ms
95,604 KB
testcase_05 AC 271 ms
95,480 KB
testcase_06 AC 275 ms
95,472 KB
testcase_07 AC 279 ms
95,472 KB
testcase_08 AC 278 ms
95,348 KB
testcase_09 AC 141 ms
86,164 KB
testcase_10 AC 141 ms
86,032 KB
testcase_11 AC 142 ms
85,928 KB
testcase_12 AC 235 ms
92,652 KB
testcase_13 AC 279 ms
95,348 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 len(sett):
    res = sett.pop()
print(res)
0