結果

問題 No.2373 wa, wo, n
ユーザー ryusukeryusuke
提出日時 2023-07-09 17:58:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 1,280 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,076 KB
最終ジャッジ日時 2024-07-23 15:15:16
合計ジャッジ時間 5,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 29 ms
11,008 KB
testcase_14 AC 197 ms
28,784 KB
testcase_15 AC 56 ms
13,696 KB
testcase_16 AC 211 ms
30,308 KB
testcase_17 AC 77 ms
16,256 KB
testcase_18 AC 35 ms
11,392 KB
testcase_19 AC 72 ms
18,048 KB
testcase_20 AC 138 ms
28,104 KB
testcase_21 AC 69 ms
17,920 KB
testcase_22 AC 100 ms
22,144 KB
testcase_23 AC 168 ms
30,976 KB
testcase_24 AC 28 ms
10,880 KB
testcase_25 AC 28 ms
10,880 KB
testcase_26 AC 28 ms
10,880 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 28 ms
11,008 KB
testcase_29 AC 29 ms
10,880 KB
testcase_30 AC 28 ms
10,880 KB
testcase_31 AC 29 ms
10,880 KB
testcase_32 AC 250 ms
32,948 KB
testcase_33 AC 178 ms
32,948 KB
testcase_34 AC 374 ms
32,944 KB
testcase_35 AC 181 ms
33,076 KB
testcase_36 AC 219 ms
32,944 KB
testcase_37 AC 220 ms
32,952 KB
testcase_38 AC 223 ms
33,072 KB
testcase_39 AC 215 ms
32,812 KB
testcase_40 AC 236 ms
33,072 KB
testcase_41 AC 230 ms
32,944 KB
testcase_42 AC 246 ms
33,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# verification-helper: PROBLEM https://yukicoder.me/problems/no/2373

def main() -> None:
    n = int(input())
    s = list(input())
    dp = [[False] * 4 for _ in range(n + 1)]
    # 0 := w, 1 := a, 2 := o, 3 := n
    if s[0] == "w":
        dp[1][0] = True
    if s[0] == "n":
        dp[1][3] = True
    if s[0] == "?":
        dp[1][0] = True
        dp[1][3] = True
    
    for i in range(2, n + 1):
        if dp[i - 1][0]:
            if s[i - 1] == "a" or s[i - 1] == "?":
                dp[i][1] = True
            if s[i - 1] == "o" or s[i - 1] == "?":
                dp[i][2] = True
        if dp[i - 1][1]:
            if s[i - 1] == "w" or s[i - 1] == "?":
                dp[i][0] = True
            if s[i - 1] == "n" or s[i - 1] == "?":
                dp[i][3] = True
        if dp[i - 1][2]:
            if s[i - 1] == "w" or s[i - 1] == "?":
                dp[i][0] = True
            if s[i - 1] == "n" or s[i - 1] == "?":
                dp[i][3] = True
        if dp[i - 1][3]:
            if s[i - 1] == "w" or s[i - 1] == "?":
                dp[i][0] = True
            if s[i - 1] == "n" or s[i - 1] == "?":
                dp[i][3] = True

    print("Yes") if dp[n][1] or dp[n][2] or dp[n][3] else print("No")


if __name__ == "__main__":
    main()
0