結果

問題 No.2373 wa, wo, n
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-07-07 22:18:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 77,928 KB
最終ジャッジ日時 2024-07-21 18:23:51
合計ジャッジ時間 3,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,540 KB
testcase_01 AC 37 ms
52,504 KB
testcase_02 AC 36 ms
53,000 KB
testcase_03 AC 37 ms
52,152 KB
testcase_04 AC 36 ms
52,808 KB
testcase_05 AC 36 ms
52,148 KB
testcase_06 AC 36 ms
52,072 KB
testcase_07 AC 38 ms
53,028 KB
testcase_08 AC 37 ms
52,140 KB
testcase_09 AC 36 ms
52,372 KB
testcase_10 AC 37 ms
53,352 KB
testcase_11 AC 36 ms
52,312 KB
testcase_12 WA -
testcase_13 AC 37 ms
52,400 KB
testcase_14 AC 85 ms
77,756 KB
testcase_15 WA -
testcase_16 AC 86 ms
77,520 KB
testcase_17 AC 67 ms
76,396 KB
testcase_18 AC 56 ms
66,928 KB
testcase_19 AC 41 ms
58,752 KB
testcase_20 AC 41 ms
59,748 KB
testcase_21 AC 41 ms
60,500 KB
testcase_22 AC 40 ms
60,168 KB
testcase_23 AC 42 ms
62,100 KB
testcase_24 AC 36 ms
52,604 KB
testcase_25 AC 36 ms
52,096 KB
testcase_26 AC 39 ms
52,996 KB
testcase_27 AC 37 ms
52,600 KB
testcase_28 AC 37 ms
52,520 KB
testcase_29 AC 37 ms
52,876 KB
testcase_30 AC 36 ms
53,292 KB
testcase_31 AC 37 ms
52,512 KB
testcase_32 AC 94 ms
77,644 KB
testcase_33 AC 43 ms
61,532 KB
testcase_34 AC 83 ms
77,616 KB
testcase_35 AC 43 ms
60,744 KB
testcase_36 AC 80 ms
77,744 KB
testcase_37 AC 76 ms
77,584 KB
testcase_38 AC 77 ms
77,612 KB
testcase_39 AC 82 ms
77,648 KB
testcase_40 AC 90 ms
77,816 KB
testcase_41 AC 88 ms
77,928 KB
testcase_42 AC 77 ms
77,764 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
        if ok:
            dp[i+len(x)] = 1
    # print(dp)
print("Yes" if dp[-1] else "No")
0