結果

問題 No.2373 wa, wo, n
ユーザー dangodango
提出日時 2023-07-07 21:27:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 73,116 KB
最終ジャッジ日時 2024-07-21 17:08:21
合計ジャッジ時間 2,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,120 KB
testcase_01 AC 34 ms
53,416 KB
testcase_02 AC 35 ms
52,436 KB
testcase_03 AC 36 ms
52,212 KB
testcase_04 AC 34 ms
52,364 KB
testcase_05 AC 35 ms
52,144 KB
testcase_06 AC 34 ms
52,152 KB
testcase_07 AC 33 ms
52,900 KB
testcase_08 AC 34 ms
52,156 KB
testcase_09 AC 35 ms
52,668 KB
testcase_10 AC 37 ms
52,928 KB
testcase_11 AC 35 ms
53,196 KB
testcase_12 AC 34 ms
52,672 KB
testcase_13 AC 34 ms
52,712 KB
testcase_14 WA -
testcase_15 AC 37 ms
54,060 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 37 ms
56,496 KB
testcase_20 AC 42 ms
60,124 KB
testcase_21 AC 37 ms
55,420 KB
testcase_22 AC 37 ms
57,540 KB
testcase_23 AC 40 ms
61,092 KB
testcase_24 AC 35 ms
52,208 KB
testcase_25 AC 34 ms
53,572 KB
testcase_26 AC 34 ms
52,492 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 42 ms
62,540 KB
testcase_34 AC 45 ms
73,116 KB
testcase_35 AC 34 ms
53,864 KB
testcase_36 AC 43 ms
62,684 KB
testcase_37 AC 39 ms
60,500 KB
testcase_38 AC 40 ms
60,804 KB
testcase_39 AC 41 ms
59,276 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 41 ms
63,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def is_wawon_string(S):
    i = 0
    while i < len(S):
        if S[i] == "w":
            if i + 1 < len(S) and S[i + 1] in ["a", "o"]:
                i += 2
            else:
                return False
        elif S[i] == "n":
            i += 1
        else:
            return False
    return True

if "?" not in S:
    if is_wawon_string(S):
        print("Yes")
    else:
        print("No")
else:
    for c in ["a", "n", "o", "w"]:
        new_S = S.replace("?", c)
        if is_wawon_string(new_S):
            print("Yes")
            break
    else:
        print("No")
0