結果
問題 |
No.233 めぐるはめぐる (3)
|
ユーザー |
|
提出日時 | 2016-03-02 22:20:51 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 344 ms / 1,000 ms |
コード長 | 470 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 7,068 KB |
実行使用メモリ | 31,796 KB |
最終ジャッジ日時 | 2024-09-24 13:35:29 |
合計ジャッジ時間 | 6,363 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#!/usr/bin/python2 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 xrange(m): sett.add(x[:i] + q[-1] + x[i:]) n = int(raw_input()) s = set(raw_input() for _ in xrange(n)) sett -= s res = 'NO' if sett: res = sett.pop() print(res)