結果
| 問題 | No.233 めぐるはめぐる (3) |
| コンテスト | |
| ユーザー |
tnoda_
|
| 提出日時 | 2015-09-14 19:38:59 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
MLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 487 bytes |
| 記録 | |
| コンパイル時間 | 427 ms |
| コンパイル使用メモリ | 81,156 KB |
| 実行使用メモリ | 190,312 KB |
| 最終ジャッジ日時 | 2026-04-02 14:46:08 |
| 合計ジャッジ時間 | 4,296 ms |
|
ジャッジサーバーID (参考情報) |
judge5_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 MLE * 1 |
ソースコード
from itertools import permutations
N = input()
S = set([])
for i in xrange(N):
S.add(raw_input())
# inabameguru
cons = list("nbmgr")
vow = list("iaaeuu")
for cs in permutations(cons):
for vs in permutations(vow):
base = ""
for i in xrange(len(cs)):
base += cs[i] + vs[i]
for i in xrange(len(base)+1):
name = base[:i] + vs[5] + base[i:]
if name not in S:
print(name)
quit()
print('NO')
tnoda_