結果

問題 No.233 めぐるはめぐる (3)
ユーザー Mao-betaMao-beta
提出日時 2024-08-22 16:36:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,123 bytes
コンパイル時間 1,038 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 95,272 KB
最終ジャッジ日時 2024-08-22 16:37:04
合計ジャッジ時間 6,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
93,208 KB
testcase_01 AC 92 ms
85,404 KB
testcase_02 AC 72 ms
79,500 KB
testcase_03 AC 95 ms
84,976 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.set_int_max_str_digits(10 ** 6)
sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N = NI()
    S = set(SI() for _ in range(N))

    def check(name):
        if name[-1] not in "aiueo":
            return False
        for i in range(len(name)-1):
            if name[i] in "aiueo":
                continue
            if name[i+1] not in "aiueo":
                return False
        return True

    for P in permutations("inabameguru"):
        if check(P) and "".join(P) not in S:
            print("".join(P))
            return

    print("NO")


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