結果

問題 No.2373 wa, wo, n
ユーザー rlangevinrlangevin
提出日時 2023-07-07 21:47:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 74,168 KB
最終ジャッジ日時 2024-07-21 17:37:56
合計ジャッジ時間 3,102 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,216 KB
testcase_01 AC 34 ms
52,552 KB
testcase_02 AC 34 ms
51,756 KB
testcase_03 AC 35 ms
52,560 KB
testcase_04 AC 35 ms
52,340 KB
testcase_05 AC 34 ms
52,892 KB
testcase_06 AC 35 ms
51,952 KB
testcase_07 AC 35 ms
52,620 KB
testcase_08 AC 35 ms
52,128 KB
testcase_09 AC 34 ms
52,324 KB
testcase_10 AC 34 ms
53,432 KB
testcase_11 AC 33 ms
52,768 KB
testcase_12 AC 35 ms
53,148 KB
testcase_13 AC 35 ms
52,492 KB
testcase_14 AC 55 ms
71,420 KB
testcase_15 AC 35 ms
54,456 KB
testcase_16 AC 54 ms
73,732 KB
testcase_17 AC 46 ms
63,540 KB
testcase_18 AC 44 ms
62,272 KB
testcase_19 AC 37 ms
56,916 KB
testcase_20 AC 41 ms
61,768 KB
testcase_21 AC 38 ms
56,264 KB
testcase_22 AC 39 ms
59,172 KB
testcase_23 AC 42 ms
65,000 KB
testcase_24 AC 36 ms
52,316 KB
testcase_25 AC 34 ms
53,440 KB
testcase_26 AC 35 ms
53,560 KB
testcase_27 AC 33 ms
52,912 KB
testcase_28 AC 34 ms
52,792 KB
testcase_29 AC 33 ms
52,932 KB
testcase_30 AC 35 ms
52,080 KB
testcase_31 AC 33 ms
52,992 KB
testcase_32 AC 54 ms
73,944 KB
testcase_33 AC 43 ms
64,928 KB
testcase_34 AC 49 ms
70,880 KB
testcase_35 AC 43 ms
65,156 KB
testcase_36 AC 52 ms
71,804 KB
testcase_37 AC 49 ms
70,652 KB
testcase_38 AC 50 ms
71,860 KB
testcase_39 AC 45 ms
71,552 KB
testcase_40 AC 55 ms
74,168 KB
testcase_41 AC 55 ms
72,964 KB
testcase_42 AC 49 ms
71,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
S.reverse()
S.append("#")
for i in range(N):
    if S[i] == "n":
        continue
    elif S[i] == "a" or S[i] == "o":
        if S[i + 1] == "w" or S[i + 1] == "?":
            S[i + 1] = "n"
            continue
        else:
            print("No")
            exit()
    elif S[i] == "?":
        if S[i + 1] == "w":
            S[i + 1] = "n"
        continue
    else:
        print("No")
        exit()
        
print("Yes")
0