結果

問題 No.2373 wa, wo, n
ユーザー june19312june19312
提出日時 2023-07-07 22:36:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 797 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 103,284 KB
最終ジャッジ日時 2024-07-21 18:49:43
合計ジャッジ時間 3,981 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,940 KB
testcase_01 AC 38 ms
52,680 KB
testcase_02 AC 38 ms
52,644 KB
testcase_03 AC 39 ms
52,656 KB
testcase_04 AC 38 ms
52,332 KB
testcase_05 AC 38 ms
52,264 KB
testcase_06 AC 39 ms
53,636 KB
testcase_07 AC 38 ms
52,316 KB
testcase_08 WA -
testcase_09 AC 38 ms
53,500 KB
testcase_10 AC 40 ms
53,040 KB
testcase_11 AC 38 ms
53,140 KB
testcase_12 AC 38 ms
53,540 KB
testcase_13 AC 38 ms
52,348 KB
testcase_14 AC 103 ms
100,680 KB
testcase_15 AC 56 ms
70,232 KB
testcase_16 AC 104 ms
102,924 KB
testcase_17 AC 59 ms
74,208 KB
testcase_18 AC 52 ms
64,268 KB
testcase_19 AC 48 ms
69,892 KB
testcase_20 AC 56 ms
84,800 KB
testcase_21 AC 46 ms
68,684 KB
testcase_22 AC 50 ms
73,964 KB
testcase_23 AC 87 ms
103,200 KB
testcase_24 AC 38 ms
53,780 KB
testcase_25 AC 38 ms
53,008 KB
testcase_26 AC 37 ms
53,344 KB
testcase_27 AC 39 ms
52,392 KB
testcase_28 AC 37 ms
53,284 KB
testcase_29 AC 39 ms
53,500 KB
testcase_30 AC 38 ms
52,896 KB
testcase_31 AC 38 ms
52,412 KB
testcase_32 AC 106 ms
103,256 KB
testcase_33 AC 88 ms
103,060 KB
testcase_34 AC 95 ms
103,104 KB
testcase_35 AC 85 ms
103,024 KB
testcase_36 AC 100 ms
103,240 KB
testcase_37 AC 96 ms
103,080 KB
testcase_38 AC 97 ms
103,284 KB
testcase_39 AC 92 ms
102,936 KB
testcase_40 AC 107 ms
103,220 KB
testcase_41 AC 106 ms
103,060 KB
testcase_42 AC 98 ms
103,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

dp = []

for i in range(N+1):
    dp.append([False]*2)

dp[0][0] = True

#0 = a,o,n
#1 = w

for i,v in enumerate(S):
    if v == "w":
        if dp[i][0] == True:
            dp[i+1][1] = True
        else:
            print("No")
            exit()
    elif v == "a" or v == "o":
        if dp[i][1] == True:
            dp[i+1][0] = True
        else:
            print("No")
            exit()
    elif v == "n":
        if dp[i][0] == True:
            dp[i+1][0] = True
        else:
            print("No")
            exit()
    elif v == "?":
        if dp[i][0] == True:
            dp[i+1][0] = True
            dp[i+1][1] = True
        else:
            dp[i+1][0] = True
    else:
        print("No")
        exit()

print("Yes")

#print(*dp, sep = "\n")
0