結果
| 問題 | No.233 めぐるはめぐる (3) |
| コンテスト | |
| ユーザー |
tnoda_
|
| 提出日時 | 2015-09-10 12:50:59 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 599 ms / 1,000 ms |
| コード長 | 534 bytes |
| 記録 | |
| コンパイル時間 | 159 ms |
| コンパイル使用メモリ | 77,464 KB |
| 最終ジャッジ日時 | 2025-12-03 16:53:11 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
| 純コード判定しない問題か言語 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
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.append(cs[i])
base.append(vs[i])
for i in xrange(len(base)+1):
name = base[:i] + [vs[5]] + base[i:]
if ''.join(name) not in S:
print(''.join(name))
quit()
print('NO')
tnoda_