結果

問題 No.2373 wa, wo, n
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-07-07 23:32:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 78,120 KB
最終ジャッジ日時 2024-07-21 19:56:51
合計ジャッジ時間 3,875 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,724 KB
testcase_01 AC 39 ms
52,272 KB
testcase_02 AC 37 ms
53,020 KB
testcase_03 AC 37 ms
52,452 KB
testcase_04 AC 38 ms
52,192 KB
testcase_05 AC 38 ms
52,640 KB
testcase_06 AC 36 ms
52,432 KB
testcase_07 AC 38 ms
52,732 KB
testcase_08 AC 38 ms
53,088 KB
testcase_09 AC 38 ms
53,092 KB
testcase_10 AC 39 ms
52,136 KB
testcase_11 AC 38 ms
53,580 KB
testcase_12 AC 38 ms
52,760 KB
testcase_13 AC 37 ms
53,824 KB
testcase_14 AC 82 ms
77,608 KB
testcase_15 AC 63 ms
71,824 KB
testcase_16 AC 83 ms
77,596 KB
testcase_17 AC 74 ms
76,436 KB
testcase_18 AC 62 ms
69,588 KB
testcase_19 AC 42 ms
60,344 KB
testcase_20 AC 43 ms
60,904 KB
testcase_21 AC 42 ms
58,976 KB
testcase_22 AC 44 ms
59,472 KB
testcase_23 AC 43 ms
61,096 KB
testcase_24 AC 38 ms
51,752 KB
testcase_25 AC 37 ms
52,440 KB
testcase_26 AC 38 ms
52,852 KB
testcase_27 AC 38 ms
52,276 KB
testcase_28 AC 39 ms
52,216 KB
testcase_29 AC 38 ms
53,252 KB
testcase_30 AC 39 ms
52,352 KB
testcase_31 AC 39 ms
52,824 KB
testcase_32 AC 87 ms
77,544 KB
testcase_33 AC 44 ms
61,792 KB
testcase_34 AC 83 ms
77,856 KB
testcase_35 AC 44 ms
60,788 KB
testcase_36 AC 79 ms
78,120 KB
testcase_37 AC 72 ms
77,472 KB
testcase_38 AC 75 ms
77,520 KB
testcase_39 AC 70 ms
77,404 KB
testcase_40 AC 86 ms
77,640 KB
testcase_41 AC 89 ms
78,068 KB
testcase_42 AC 72 ms
77,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
dp = [0]*(n+1)
dp[0] = 1
l = ["wa","wo","n"]

for i in range(n):
    if dp[i] == 0:
        continue

    for x in l:
        if len(x) + i > n:
            continue
        ok = 1
        for j in range(len(x)):
            if x[j] == S[i+j] or S[i+j] == "?":
                ok = 1
            else:
                ok = 0
                break
        if ok:
            # print(i,x,i+len(x))
            dp[i+len(x)] = 1
    # print(dp)
print("Yes" if dp[-1] else "No")
0