結果

問題 No.2373 wa, wo, n
ユーザー NPNP
提出日時 2023-07-07 21:40:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 419 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 385,184 KB
最終ジャッジ日時 2024-07-21 17:26:59
合計ジャッジ時間 5,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,216 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 37 ms
51,584 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 38 ms
51,584 KB
testcase_10 AC 38 ms
51,584 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def is_wawon(s):
    if not s:
        return True
    if s[:2] == 'wa' or s[:2] == 'wo':
        return is_wawon(s[2:])
    if s[0] == 'n':
        return is_wawon(s[1:])
    return False

def solve(S):
    if '?' not in S:
        return is_wawon(S)
    for c in 'wan':
        if solve(S.replace('?', c, 1)):
            return True
    return False

print('Yes' if solve(S) else 'No')
0