結果

問題 No.2373 wa, wo, n
ユーザー dangodango
提出日時 2023-07-08 08:20:51
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 720 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 266,368 KB
最終ジャッジ日時 2024-07-22 04:11:36
合計ジャッジ時間 11,612 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,536 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 40 ms
51,328 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 RE -
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 41 ms
51,712 KB
testcase_11 AC 38 ms
51,584 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 1,259 ms
259,328 KB
testcase_15 AC 87 ms
76,416 KB
testcase_16 AC 1,523 ms
260,864 KB
testcase_17 AC 153 ms
77,056 KB
testcase_18 AC 60 ms
73,728 KB
testcase_19 AC 41 ms
55,168 KB
testcase_20 AC 43 ms
57,344 KB
testcase_21 AC 41 ms
53,120 KB
testcase_22 AC 42 ms
56,832 KB
testcase_23 AC 42 ms
54,528 KB
testcase_24 AC 38 ms
51,328 KB
testcase_25 AC 38 ms
51,712 KB
testcase_26 AC 39 ms
51,840 KB
testcase_27 AC 38 ms
51,840 KB
testcase_28 AC 37 ms
51,712 KB
testcase_29 AC 38 ms
51,840 KB
testcase_30 AC 38 ms
51,840 KB
testcase_31 AC 38 ms
51,328 KB
testcase_32 TLE -
testcase_33 AC 45 ms
60,288 KB
testcase_34 TLE -
testcase_35 AC 59 ms
53,764 KB
testcase_36 AC 1,799 ms
260,836 KB
testcase_37 AC 1,565 ms
260,436 KB
testcase_38 AC 1,518 ms
260,816 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 1,911 ms
264,504 KB
testcase_42 AC 1,611 ms
260,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N, S):
    candidate = ["wa", "wo", "n"]
    while True:
        if len(S) == 0:
            break
        if S[0] == '?' and len(S) == 1:
            S = []
            break
        if S[0] == '?' and S[1] == '?':
            S = S[1:]
            continue
        match = False
        for cc in candidate:
            match = True
            for i in range(len(cc)):
                if S[i] != '?' and S[i] != cc[i]:
                    match = False
                    break
            if match:
                S = S[len(cc):]
                break
        if not match:
            break
    if len(S) == 0:
        print("Yes")
    else:
        print("No")
N = int(input())
S = input()
solve(N, S)
0