結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | roiti46 |
提出日時 | 2015-06-26 22:59:43 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 528 bytes |
コンパイル時間 | 522 ms |
コンパイル使用メモリ | 6,784 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-07-07 18:18:39 |
合計ジャッジ時間 | 4,200 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
ソースコード
C = set([]) a = "iaaeuu" b = "nbmgr" boin = set(["".join(c) for c in it.permutations(a, 6)]) shin = set(["".join(c) for c in it.permutations(b, 5)]) for bo in boin: for si in shin: s = "" for i in xrange(5): s += si[i] + bo[i] for k in xrange(11): C.add(s[:k] + bo[5] + s[k:]) N = int(raw_input()) S = set([raw_input() for i in xrange(N)]) ans = C - S if len(ans) == 0: print "NO" else: print list(ans)[0]