結果

問題 No.233 めぐるはめぐる (3)
ユーザー maspymaspy
提出日時 2020-02-06 10:21:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 544 ms / 1,000 ms
コード長 907 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 102,832 KB
最終ジャッジ日時 2024-09-25 04:27:32
合計ジャッジ時間 5,224 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
88,180 KB
testcase_01 AC 59 ms
71,480 KB
testcase_02 AC 48 ms
62,476 KB
testcase_03 AC 61 ms
73,868 KB
testcase_04 AC 544 ms
102,528 KB
testcase_05 AC 301 ms
102,728 KB
testcase_06 AC 212 ms
102,340 KB
testcase_07 AC 542 ms
102,492 KB
testcase_08 AC 533 ms
102,832 KB
testcase_09 AC 38 ms
52,220 KB
testcase_10 AC 39 ms
52,820 KB
testcase_11 AC 39 ms
53,444 KB
testcase_12 AC 62 ms
73,368 KB
testcase_13 AC 74 ms
81,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import itertools

N = int(readline())
S = frozenset(read().decode().split())

def gen_consonant_indices():
    for p in itertools.combinations(range(10), 5):
        if all(x + 1 != y for x, y in zip(p, p[1:])):
            yield p

def solve():
    for I in gen_consonant_indices():
        J = [i for i in range(11) if i not in I]
        for perm_1 in itertools.permutations('nbmgr'):
            for perm_2 in itertools.permutations('iaaeuu'):
                name = [None] * 11
                for i, p in zip(I, perm_1):
                    name[i] = p
                for i, p in zip(J, perm_2):
                    name[i] = p
                name = ''.join(name)
                if name in S:
                    continue
                return name
    return 'NO'

print(solve())
0