結果

問題 No.2373 wa, wo, n
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-07-07 23:05:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 76,704 KB
最終ジャッジ日時 2024-07-21 19:24:00
合計ジャッジ時間 4,204 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,068 KB
testcase_01 AC 39 ms
53,368 KB
testcase_02 AC 39 ms
52,488 KB
testcase_03 AC 38 ms
53,116 KB
testcase_04 AC 38 ms
52,392 KB
testcase_05 AC 41 ms
53,344 KB
testcase_06 AC 39 ms
52,204 KB
testcase_07 AC 38 ms
53,432 KB
testcase_08 WA -
testcase_09 AC 39 ms
53,484 KB
testcase_10 AC 39 ms
53,020 KB
testcase_11 AC 40 ms
52,540 KB
testcase_12 AC 39 ms
53,012 KB
testcase_13 AC 39 ms
52,368 KB
testcase_14 AC 115 ms
76,164 KB
testcase_15 AC 94 ms
76,316 KB
testcase_16 AC 108 ms
76,216 KB
testcase_17 AC 98 ms
76,108 KB
testcase_18 AC 66 ms
70,128 KB
testcase_19 AC 45 ms
65,324 KB
testcase_20 AC 48 ms
74,208 KB
testcase_21 AC 45 ms
64,856 KB
testcase_22 AC 47 ms
68,428 KB
testcase_23 AC 53 ms
75,608 KB
testcase_24 AC 39 ms
53,404 KB
testcase_25 AC 39 ms
52,356 KB
testcase_26 AC 38 ms
53,000 KB
testcase_27 AC 38 ms
53,432 KB
testcase_28 AC 39 ms
52,688 KB
testcase_29 AC 40 ms
52,548 KB
testcase_30 AC 40 ms
53,676 KB
testcase_31 AC 40 ms
52,548 KB
testcase_32 AC 118 ms
76,692 KB
testcase_33 AC 54 ms
75,628 KB
testcase_34 AC 107 ms
76,120 KB
testcase_35 AC 53 ms
75,696 KB
testcase_36 AC 85 ms
76,184 KB
testcase_37 AC 72 ms
75,916 KB
testcase_38 AC 72 ms
76,160 KB
testcase_39 AC 62 ms
75,972 KB
testcase_40 AC 115 ms
76,220 KB
testcase_41 AC 114 ms
76,704 KB
testcase_42 AC 83 ms
76,228 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 dp else "No")
        
0