結果

問題 No.2373 wa, wo, n
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-07-07 23:06:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 76,824 KB
最終ジャッジ日時 2024-07-21 19:29:20
合計ジャッジ時間 4,561 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,308 KB
testcase_01 AC 49 ms
52,312 KB
testcase_02 AC 47 ms
52,444 KB
testcase_03 AC 43 ms
53,564 KB
testcase_04 AC 43 ms
53,008 KB
testcase_05 AC 45 ms
53,352 KB
testcase_06 AC 40 ms
52,244 KB
testcase_07 AC 41 ms
54,128 KB
testcase_08 AC 40 ms
52,004 KB
testcase_09 AC 42 ms
52,460 KB
testcase_10 AC 42 ms
53,100 KB
testcase_11 AC 42 ms
52,348 KB
testcase_12 AC 41 ms
53,272 KB
testcase_13 AC 43 ms
53,816 KB
testcase_14 AC 123 ms
76,532 KB
testcase_15 AC 103 ms
76,240 KB
testcase_16 AC 114 ms
76,472 KB
testcase_17 AC 107 ms
76,248 KB
testcase_18 AC 69 ms
69,928 KB
testcase_19 AC 48 ms
66,156 KB
testcase_20 AC 52 ms
73,768 KB
testcase_21 AC 50 ms
65,592 KB
testcase_22 AC 50 ms
68,432 KB
testcase_23 AC 59 ms
75,896 KB
testcase_24 AC 45 ms
52,768 KB
testcase_25 AC 47 ms
53,012 KB
testcase_26 AC 42 ms
52,396 KB
testcase_27 AC 47 ms
52,600 KB
testcase_28 AC 43 ms
52,968 KB
testcase_29 AC 47 ms
52,584 KB
testcase_30 AC 43 ms
53,684 KB
testcase_31 AC 46 ms
52,760 KB
testcase_32 AC 126 ms
76,824 KB
testcase_33 AC 58 ms
75,868 KB
testcase_34 AC 114 ms
76,332 KB
testcase_35 AC 56 ms
75,824 KB
testcase_36 AC 89 ms
75,992 KB
testcase_37 AC 77 ms
76,528 KB
testcase_38 AC 76 ms
75,988 KB
testcase_39 AC 67 ms
75,948 KB
testcase_40 AC 125 ms
76,632 KB
testcase_41 AC 126 ms
76,588 KB
testcase_42 AC 88 ms
76,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()

l = ["wa","wo","n"]

dp = set()
if S[0] == "w":
    dp.add(S[0])
elif S[0] == "n":
    dp.add(S[0])

elif S[0] == "?":
    dp.add("w")
    dp.add("n")


for s in S[1:]:

    ndp = set()

    for x in dp:
        if x == "n" or x == "a" or x == "o":
            if s == "n" or s == "w":
                ndp.add(s)
            elif s == "?":
                ndp.add("n")
                ndp.add("w")
        elif x == "w":
            if s == "a" or s == "o":
                ndp.add(s)
            elif s == "?":
                ndp.add("a")
                ndp.add("o")

    dp = ndp

print("Yes" if ("a" in dp or "n" in dp or "o" in dp) else "No")
        
0