結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
20,420 KB
testcase_01 AC 61 ms
19,624 KB
testcase_02 AC 35 ms
13,088 KB
testcase_03 AC 58 ms
19,744 KB
testcase_04 AC 940 ms
21,012 KB
testcase_05 AC 715 ms
21,092 KB
testcase_06 AC 529 ms
20,948 KB
testcase_07 AC 988 ms
21,120 KB
testcase_08 AC 999 ms
20,972 KB
testcase_09 AC 17 ms
8,864 KB
testcase_10 AC 18 ms
8,800 KB
testcase_11 AC 17 ms
8,844 KB
testcase_12 AC 72 ms
19,732 KB
testcase_13 AC 78 ms
20,680 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],aa|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