結果

問題 No.233 めぐるはめぐる (3)
ユーザー mkawa2mkawa2
提出日時 2020-01-30 12:28:04
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
RE  
実行時間 -
コード長 1,582 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 11,112 KB
実行使用メモリ 21,156 KB
最終ジャッジ日時 2023-10-14 08:23:03
合計ジャッジ時間 4,541 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 62 ms
19,764 KB
testcase_02 AC 38 ms
13,212 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 17 ms
8,736 KB
testcase_10 AC 17 ms
8,828 KB
testcase_11 AC 17 ms
8,804 KB
testcase_12 RE -
testcase_13 RE -
権限があれば一括ダウンロードができます

ソースコード

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 cntb[i]==0:continue
                cntb[i]-=1
                ret=dfs(s+bc[i],aa|isa,True)
                if ret:return ret
                cntb[i]+=1
        return ""

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

main()
0