結果

問題 No.233 めぐるはめぐる (3)
ユーザー mkawa2mkawa2
提出日時 2020-01-30 12:00:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,552 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 11,064 KB
実行使用メモリ 21,084 KB
最終ジャッジ日時 2023-10-14 08:22:23
合計ジャッジ時間 4,858 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 75 ms
19,716 KB
testcase_02 AC 46 ms
13,056 KB
testcase_03 AC 79 ms
19,556 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 21 ms
8,804 KB
testcase_10 AC 22 ms
8,820 KB
testcase_11 AC 23 ms
8,684 KB
testcase_12 AC 79 ms
19,684 KB
testcase_13 AC 100 ms
20,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
from bisect import *
from collections import *
from heapq import *

int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def SI(): return sys.stdin.readline()[:-1]
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]

def main():
    def dfs(s="",aa=False,isa=True):
        if len(s)==11:
            if s in ss:return ""
            return s
        if isa:
            for i in range(5):
                if uses[i]:continue
                uses[i]=True
                ret=dfs(s+sc[i],aa,False)
                if ret:return ret
                uses[i]=False
        if (not isa) or (not aa):
            for i in range(6):
                if useb[i]:continue
                useb[i]=True
                ret=dfs(s+bc[i],isa,True)
                if ret:return ret
                useb[i]=False
        return ""

    bc=['a','a','i','u','u','e']
    sc=['n','b','m','g','r']
    useb=[False]*6
    uses=[False]*5
    n=II()
    ss=set()
    for _ in range(n):ss.add(SI())
    ans=dfs()
    if ans:print(ans)
    else:print("NO")

main()
0