結果

問題 No.2373 wa, wo, n
ユーザー Akijin_007Akijin_007
提出日時 2023-07-07 22:26:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 73,604 KB
最終ジャッジ日時 2024-07-21 18:34:13
合計ジャッジ時間 3,298 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,856 KB
testcase_01 AC 42 ms
52,092 KB
testcase_02 AC 40 ms
52,452 KB
testcase_03 AC 40 ms
52,828 KB
testcase_04 AC 40 ms
53,364 KB
testcase_05 AC 40 ms
53,304 KB
testcase_06 AC 40 ms
52,684 KB
testcase_07 AC 40 ms
52,332 KB
testcase_08 AC 40 ms
53,068 KB
testcase_09 AC 39 ms
52,212 KB
testcase_10 AC 40 ms
52,752 KB
testcase_11 AC 40 ms
52,880 KB
testcase_12 AC 40 ms
53,224 KB
testcase_13 AC 40 ms
53,892 KB
testcase_14 AC 53 ms
66,348 KB
testcase_15 AC 40 ms
52,720 KB
testcase_16 AC 54 ms
67,180 KB
testcase_17 AC 48 ms
60,872 KB
testcase_18 AC 45 ms
59,604 KB
testcase_19 AC 42 ms
54,184 KB
testcase_20 AC 43 ms
53,960 KB
testcase_21 AC 41 ms
53,820 KB
testcase_22 AC 41 ms
52,836 KB
testcase_23 AC 43 ms
54,028 KB
testcase_24 AC 40 ms
52,356 KB
testcase_25 AC 40 ms
53,416 KB
testcase_26 AC 40 ms
52,288 KB
testcase_27 AC 39 ms
53,160 KB
testcase_28 AC 39 ms
53,380 KB
testcase_29 AC 38 ms
52,400 KB
testcase_30 AC 39 ms
53,028 KB
testcase_31 AC 40 ms
52,864 KB
testcase_32 AC 54 ms
67,644 KB
testcase_33 AC 42 ms
53,640 KB
testcase_34 AC 55 ms
73,604 KB
testcase_35 AC 42 ms
53,480 KB
testcase_36 AC 53 ms
65,016 KB
testcase_37 AC 48 ms
63,868 KB
testcase_38 AC 49 ms
63,580 KB
testcase_39 AC 56 ms
73,004 KB
testcase_40 AC 52 ms
66,264 KB
testcase_41 AC 53 ms
65,264 KB
testcase_42 AC 49 ms
62,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())
S = input()[::-1]

i = 0
s2 = ["aw", "ow", "?w", "a?", "o?"]
s1 = ["n", "?"]
while i < N:
    if S[i:i+2] in s2:
        i += 2
    elif S[i:i+1] in s1:
        i += 1
    else:
        break

if i >= N:
    print("Yes")
else:
    print("No")
0