結果

問題 No.2373 wa, wo, n
ユーザー yabityabit
提出日時 2023-07-11 09:51:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 72,368 KB
最終ジャッジ日時 2024-09-13 00:03:59
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,072 KB
testcase_01 AC 40 ms
52,900 KB
testcase_02 AC 43 ms
52,360 KB
testcase_03 AC 38 ms
53,264 KB
testcase_04 AC 39 ms
52,936 KB
testcase_05 AC 39 ms
53,028 KB
testcase_06 AC 38 ms
52,176 KB
testcase_07 AC 40 ms
52,708 KB
testcase_08 AC 39 ms
52,884 KB
testcase_09 AC 39 ms
52,220 KB
testcase_10 AC 39 ms
52,892 KB
testcase_11 AC 40 ms
52,888 KB
testcase_12 AC 40 ms
52,868 KB
testcase_13 AC 39 ms
52,280 KB
testcase_14 AC 58 ms
70,408 KB
testcase_15 AC 51 ms
63,792 KB
testcase_16 AC 57 ms
71,096 KB
testcase_17 AC 53 ms
65,160 KB
testcase_18 AC 47 ms
61,000 KB
testcase_19 AC 41 ms
57,268 KB
testcase_20 AC 44 ms
60,904 KB
testcase_21 AC 41 ms
55,480 KB
testcase_22 AC 42 ms
58,076 KB
testcase_23 AC 45 ms
63,604 KB
testcase_24 AC 39 ms
53,740 KB
testcase_25 AC 39 ms
52,432 KB
testcase_26 AC 39 ms
54,000 KB
testcase_27 AC 39 ms
52,196 KB
testcase_28 AC 39 ms
52,624 KB
testcase_29 AC 40 ms
52,076 KB
testcase_30 AC 40 ms
52,404 KB
testcase_31 AC 40 ms
52,476 KB
testcase_32 AC 60 ms
72,144 KB
testcase_33 AC 46 ms
63,400 KB
testcase_34 AC 54 ms
69,984 KB
testcase_35 AC 46 ms
63,116 KB
testcase_36 AC 54 ms
69,844 KB
testcase_37 AC 49 ms
68,072 KB
testcase_38 AC 50 ms
68,424 KB
testcase_39 AC 49 ms
67,656 KB
testcase_40 AC 57 ms
72,072 KB
testcase_41 AC 59 ms
72,368 KB
testcase_42 AC 51 ms
68,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
def hantei():
    i = 0
    while i < N:
        if S[i] == 'n':
            i += 1
        elif S[i] == 'w':
            if i == N-1:
                return False
            elif S[i+1] == 'a' or S[i+1] == 'o' or S[i+1] == '?':
                i += 2
            else:
                return False
        elif S[i] == '?':
            if i == N-1:
                i += 1
            elif S[i+1] == 'a' or S[i+1] == 'o':
                i += 2
            else:
                i += 1
        else:
            return False
    return True

if hantei():
    print('Yes')
else:
    print('No')
0