結果
| 問題 | No.233 めぐるはめぐる (3) | 
| コンテスト | |
| ユーザー |  はむ吉🐹 | 
| 提出日時 | 2016-03-02 11:49:00 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 391 ms / 1,000 ms | 
| コード長 | 1,058 bytes | 
| コンパイル時間 | 252 ms | 
| コンパイル使用メモリ | 82,260 KB | 
| 実行使用メモリ | 99,172 KB | 
| 最終ジャッジ日時 | 2024-09-24 13:28:33 | 
| 合計ジャッジ時間 | 7,365 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 11 | 
ソースコード
#!/usr/bin/env pypy3
# -*- coding: utf-8 -*-
import itertools
CONSONANTS = "nbmgr"
VOWELS = "iaaeuu"
def insert_char_after(base_string, char, index):
    if index == -1:
        return char + base_string
    else:
        return base_string[:index + 1] + char + base_string[index + 1:]
def solve(used_names):
    all_names = set()
    con_perms = itertools.permutations(CONSONANTS)
    vow_perms = itertools.permutations(VOWELS)
    for con_perm, vow_perm in itertools.product(con_perms, vow_perms):
        cons = "".join(con_perm)
        vows = "".join(vow_perm)
        vows_init = vows[0:5]
        vows_last = vows[-1]
        ten_str = "".join(a + b for a, b in zip(cons, vows))
        for i in range(-1, 10):
            all_names.add(insert_char_after(ten_str, vows_last, i))
    return all_names - used_names
def main():
    n = int(input())
    used_names = {input() for _ in range(n)}
    answers = solve(used_names)
    if not answers:
        print("NO")
    else:
        print(answers.pop())
if __name__ == '__main__':
    main()
            
            
            
        