結果
| 問題 | No.233 めぐるはめぐる (3) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-06-26 23:14:10 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 559 bytes |
| 記録 | |
| コンパイル時間 | 132 ms |
| コンパイル使用メモリ | 77,896 KB |
| 最終ジャッジ日時 | 2025-12-03 15:43:14 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 WA * 2 |
ソースコード
#!/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
if len(sett) > 0:
print list(sett)[0]
else:
print 'NO'