結果

問題 No.233 めぐるはめぐる (3)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-06-26 23:12:49
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 524 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 18,396 KB
最終ジャッジ日時 2024-07-07 18:24:35
合計ジャッジ時間 5,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
18,360 KB
testcase_01 AC 172 ms
14,172 KB
testcase_02 AC 119 ms
12,892 KB
testcase_03 AC 178 ms
18,196 KB
testcase_04 AC 222 ms
18,268 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 73 ms
8,064 KB
testcase_10 AC 73 ms
8,192 KB
testcase_11 AC 74 ms
8,064 KB
testcase_12 AC 162 ms
14,424 KB
testcase_13 AC 217 ms
18,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from itertools import permutations, product, izip_longest
who = 'inabameguru'
nya = ''.join(who[i] for i in xrange(0, len(who), 2))
nyk = ''.join(who[i] for i in xrange(1, len(who), 2))
nyaa = {''.join(e) for e in permutations(nya)}
nykk = {''.join(e) for e in permutations(nyk)}
sett = set()
for ele in product(nyaa, nykk):
    sett.add(''.join(map(lambda e: ''.join(e), izip_longest(*ele, fillvalue=''))))
n = int(raw_input())
s = set(raw_input() for _ in xrange(n))
sett -= s
print list(sett)[0] or 'NO'
0