結果

問題 No.233 めぐるはめぐる (3)
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-03-02 14:27:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 396 ms / 1,000 ms
コード長 1,009 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 81,796 KB
実行使用メモリ 85,412 KB
最終ジャッジ日時 2023-10-24 19:32:26
合計ジャッジ時間 5,196 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
85,388 KB
testcase_01 AC 115 ms
82,484 KB
testcase_02 AC 85 ms
78,656 KB
testcase_03 AC 123 ms
82,484 KB
testcase_04 AC 353 ms
85,408 KB
testcase_05 AC 347 ms
85,412 KB
testcase_06 AC 306 ms
85,412 KB
testcase_07 AC 394 ms
85,412 KB
testcase_08 AC 396 ms
85,412 KB
testcase_09 AC 38 ms
53,568 KB
testcase_10 AC 38 ms
53,568 KB
testcase_11 AC 38 ms
53,568 KB
testcase_12 AC 118 ms
82,496 KB
testcase_13 AC 150 ms
85,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/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):
    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):
            cand = insert_char_after(ten_str, vows_last, i)
            if cand not in used_names:
                return cand
    else:
        return "NO"


def main():
    n = int(input())
    used_names = {input() for _ in range(n)}
    print(solve(used_names))


if __name__ == '__main__':
    main()
0