結果

問題 No.2373 wa, wo, n
ユーザー poyonpoyon
提出日時 2023-06-23 18:52:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-07-02 11:27:36
合計ジャッジ時間 4,026 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 39 ms
52,184 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 122 ms
77,184 KB
testcase_15 AC 78 ms
75,904 KB
testcase_16 AC 124 ms
77,316 KB
testcase_17 AC 85 ms
75,884 KB
testcase_18 AC 74 ms
75,580 KB
testcase_19 AC 42 ms
58,112 KB
testcase_20 AC 43 ms
58,880 KB
testcase_21 AC 43 ms
58,496 KB
testcase_22 AC 43 ms
58,752 KB
testcase_23 AC 45 ms
59,680 KB
testcase_24 AC 38 ms
52,352 KB
testcase_25 AC 37 ms
52,096 KB
testcase_26 AC 39 ms
51,712 KB
testcase_27 AC 37 ms
52,096 KB
testcase_28 AC 39 ms
51,712 KB
testcase_29 AC 38 ms
52,096 KB
testcase_30 AC 38 ms
51,968 KB
testcase_31 AC 38 ms
52,096 KB
testcase_32 AC 130 ms
77,952 KB
testcase_33 AC 46 ms
60,416 KB
testcase_34 AC 155 ms
77,764 KB
testcase_35 AC 46 ms
59,812 KB
testcase_36 AC 109 ms
77,332 KB
testcase_37 AC 110 ms
77,136 KB
testcase_38 AC 104 ms
77,660 KB
testcase_39 AC 101 ms
77,120 KB
testcase_40 AC 124 ms
77,440 KB
testcase_41 AC 119 ms
77,440 KB
testcase_42 AC 107 ms
77,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline


def main():
    N = int(input())
    S = input().rstrip()

    def match(S, P):
        assert(len(S) == len(P))
        for s, p in zip(S, P):
            if (s == p or s == '?'): continue
            return False
        return True

    patterns = ("wa", "wo", "n")

    # dp[i] := S[0,i) が wawon 文字列であるか否か
    dp = [False] * (N + 1)
    dp[0] = True
    for i in range(N):
        if not dp[i]: continue
        for p in patterns:
            n = len(p)
            if (i + n <= N and match(S[i:i + n], p)):
                dp[i + n] = True

    ans = "Yes" if dp[N] else "No"
    print(ans)


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