結果

問題 No.233 めぐるはめぐる (3)
ユーザー mkawa2mkawa2
提出日時 2020-01-30 12:31:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 390 ms / 1,000 ms
コード長 1,682 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 11,044 KB
実行使用メモリ 21,052 KB
最終ジャッジ日時 2023-10-14 08:23:15
合計ジャッジ時間 4,757 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
20,440 KB
testcase_01 AC 72 ms
19,716 KB
testcase_02 AC 43 ms
13,236 KB
testcase_03 AC 77 ms
19,704 KB
testcase_04 AC 376 ms
21,008 KB
testcase_05 AC 292 ms
20,964 KB
testcase_06 AC 247 ms
21,052 KB
testcase_07 AC 390 ms
20,924 KB
testcase_08 AC 389 ms
20,964 KB
testcase_09 AC 20 ms
8,816 KB
testcase_10 AC 20 ms
8,724 KB
testcase_11 AC 20 ms
8,692 KB
testcase_12 AC 70 ms
19,684 KB
testcase_13 AC 95 ms
20,788 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):
        #print(s,aa,isa)
        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(4):
                if cntb[i]==0:continue
                cntb[i]-=1
                ret=dfs(s+bc[i],aa|isa,True)
                cntb[i]+=1
                if ret:return ret
        return ""

    #with open("testdata") as f:
    #    s=f.readlines()
    bc=['a','u','i','e']
    sc=['n','b','m','g','r']
    cntb=[2,2,1,1]
    uses=[False]*5
    n=II()
    #n=int(s[0])
    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