結果

問題 No.2373 wa, wo, n
ユーザー NPNP
提出日時 2023-07-07 21:43:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 71,180 KB
最終ジャッジ日時 2024-07-21 17:31:08
合計ジャッジ時間 3,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,012 KB
testcase_01 AC 36 ms
52,364 KB
testcase_02 AC 35 ms
52,092 KB
testcase_03 AC 36 ms
52,464 KB
testcase_04 AC 34 ms
53,068 KB
testcase_05 AC 35 ms
52,216 KB
testcase_06 AC 36 ms
52,396 KB
testcase_07 AC 34 ms
53,228 KB
testcase_08 AC 36 ms
53,664 KB
testcase_09 AC 36 ms
52,748 KB
testcase_10 AC 35 ms
52,732 KB
testcase_11 AC 34 ms
52,300 KB
testcase_12 AC 34 ms
52,028 KB
testcase_13 AC 35 ms
52,900 KB
testcase_14 AC 63 ms
70,040 KB
testcase_15 AC 57 ms
68,444 KB
testcase_16 AC 66 ms
71,180 KB
testcase_17 AC 56 ms
68,372 KB
testcase_18 AC 49 ms
64,388 KB
testcase_19 AC 57 ms
67,600 KB
testcase_20 AC 63 ms
70,180 KB
testcase_21 AC 57 ms
69,144 KB
testcase_22 AC 56 ms
67,996 KB
testcase_23 AC 62 ms
68,816 KB
testcase_24 AC 35 ms
52,480 KB
testcase_25 AC 34 ms
52,160 KB
testcase_26 AC 35 ms
52,000 KB
testcase_27 AC 36 ms
53,228 KB
testcase_28 AC 35 ms
52,252 KB
testcase_29 AC 35 ms
53,108 KB
testcase_30 AC 36 ms
52,740 KB
testcase_31 AC 36 ms
52,932 KB
testcase_32 AC 65 ms
69,856 KB
testcase_33 AC 64 ms
69,532 KB
testcase_34 AC 50 ms
62,188 KB
testcase_35 AC 51 ms
64,160 KB
testcase_36 AC 54 ms
64,792 KB
testcase_37 AC 49 ms
63,172 KB
testcase_38 AC 47 ms
62,292 KB
testcase_39 AC 46 ms
61,620 KB
testcase_40 AC 63 ms
69,528 KB
testcase_41 AC 63 ms
70,448 KB
testcase_42 AC 49 ms
62,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [False] * (N + 1)
dp[0] = True

for i in range(N):
    if S[i] == 'w' or S[i] == '?':
        if i + 2 <= N and (S[i + 1] == 'a' or S[i + 1] == 'o' or S[i + 1] == '?'):
            dp[i + 2] |= dp[i]
    if S[i] == 'n' or S[i] == '?':
        dp[i + 1] |= dp[i]

print('Yes' if dp[N] else 'No')
0