結果

問題 No.2373 wa, wo, n
ユーザー tamatotamato
提出日時 2023-07-07 21:35:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 85,084 KB
最終ジャッジ日時 2024-07-21 17:19:19
合計ジャッジ時間 4,028 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,724 KB
testcase_01 AC 35 ms
52,624 KB
testcase_02 AC 34 ms
52,852 KB
testcase_03 AC 35 ms
52,260 KB
testcase_04 AC 35 ms
53,256 KB
testcase_05 AC 37 ms
52,152 KB
testcase_06 AC 36 ms
52,072 KB
testcase_07 AC 36 ms
52,768 KB
testcase_08 AC 34 ms
53,288 KB
testcase_09 AC 34 ms
52,616 KB
testcase_10 AC 34 ms
52,968 KB
testcase_11 AC 37 ms
52,452 KB
testcase_12 AC 35 ms
53,752 KB
testcase_13 AC 37 ms
52,496 KB
testcase_14 AC 88 ms
82,336 KB
testcase_15 AC 42 ms
63,776 KB
testcase_16 AC 87 ms
83,220 KB
testcase_17 AC 65 ms
77,064 KB
testcase_18 AC 50 ms
66,004 KB
testcase_19 AC 47 ms
66,216 KB
testcase_20 AC 52 ms
70,652 KB
testcase_21 AC 47 ms
64,820 KB
testcase_22 AC 48 ms
65,968 KB
testcase_23 AC 52 ms
70,984 KB
testcase_24 AC 34 ms
53,568 KB
testcase_25 AC 34 ms
52,944 KB
testcase_26 AC 36 ms
52,808 KB
testcase_27 AC 35 ms
52,156 KB
testcase_28 AC 36 ms
52,512 KB
testcase_29 AC 36 ms
52,392 KB
testcase_30 AC 36 ms
53,152 KB
testcase_31 AC 35 ms
51,996 KB
testcase_32 AC 97 ms
84,212 KB
testcase_33 AC 53 ms
72,072 KB
testcase_34 AC 93 ms
85,084 KB
testcase_35 AC 47 ms
69,868 KB
testcase_36 AC 83 ms
84,504 KB
testcase_37 AC 68 ms
83,436 KB
testcase_38 AC 81 ms
84,452 KB
testcase_39 AC 91 ms
85,020 KB
testcase_40 AC 93 ms
84,580 KB
testcase_41 AC 91 ms
84,668 KB
testcase_42 AC 68 ms
81,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 998244353

N = int(input())
S = input().rstrip('\n')

S = list(S)
for i in range(N):
    if S[i] == "?":
        if i > 0:
            if S[i - 1] == "w":
                S[i] = "a"
        if i != N - 1:
            if S[i + 1] == "a" or S[i + 1] == "o":
                S[i] = "w"

while S:
    if len(S) == 1:
        if S[0] == "?" or S[0] == "n":
            S.pop()
        else:
            print("No")
            exit()
    else:
        if S[-2:] == ["w", "a"] or S[-2:] == ["w", "o"]:
            S.pop()
            S.pop()
        elif S[-1] == "n" or S[-1] == "?":
            S.pop()
        else:
            print("No")
            exit()
print("Yes")
0