結果

問題 No.2373 wa, wo, n
ユーザー lllllll88938494lllllll88938494
提出日時 2023-07-07 21:33:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 762 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 74,164 KB
最終ジャッジ日時 2024-07-21 17:16:28
合計ジャッジ時間 3,157 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,332 KB
testcase_01 AC 35 ms
52,756 KB
testcase_02 AC 36 ms
52,404 KB
testcase_03 AC 37 ms
52,488 KB
testcase_04 AC 36 ms
52,744 KB
testcase_05 AC 36 ms
52,620 KB
testcase_06 AC 38 ms
52,900 KB
testcase_07 AC 36 ms
53,104 KB
testcase_08 AC 39 ms
52,412 KB
testcase_09 AC 35 ms
53,116 KB
testcase_10 AC 35 ms
53,356 KB
testcase_11 AC 35 ms
54,168 KB
testcase_12 AC 36 ms
52,624 KB
testcase_13 AC 36 ms
52,772 KB
testcase_14 WA -
testcase_15 AC 35 ms
54,372 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 36 ms
56,760 KB
testcase_20 AC 39 ms
61,984 KB
testcase_21 AC 35 ms
56,104 KB
testcase_22 AC 37 ms
57,924 KB
testcase_23 AC 41 ms
62,300 KB
testcase_24 AC 33 ms
53,132 KB
testcase_25 AC 35 ms
52,812 KB
testcase_26 AC 35 ms
52,588 KB
testcase_27 AC 36 ms
52,668 KB
testcase_28 AC 36 ms
52,880 KB
testcase_29 AC 35 ms
52,616 KB
testcase_30 AC 36 ms
52,800 KB
testcase_31 AC 35 ms
53,564 KB
testcase_32 WA -
testcase_33 AC 42 ms
63,628 KB
testcase_34 AC 49 ms
71,184 KB
testcase_35 AC 41 ms
63,864 KB
testcase_36 AC 56 ms
74,164 KB
testcase_37 AC 49 ms
71,932 KB
testcase_38 AC 49 ms
71,304 KB
testcase_39 AC 47 ms
71,524 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 51 ms
71,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=list(input())

while True:
    if len(s) == 0:
        print('Yes')
        exit()
    if len(s) == 1:
        if s[0] == 'n' or s[0] == '?':
            print('Yes')
            exit()
        else:
            print('No')
            exit()

    else:
        f = 0
        if s[-1] == 'n':
            s.pop()
            f = 1
        elif (s[-1] == 'o' or s[-1] == '?') and (s[-2] == 'w' or s[-2] == '?'):
            s.pop()
            s.pop()
            f = 1
        elif (s[-1] == 'a' or s[-1] == '?') and (s[-2] == 'w' or s[-2] == '?'):
            s.pop()
            s.pop()
            f = 1

        elif s[-1] == '?':
            s.pop()
            f = 1
        if f == 0:
            print('No')
            exit()
        

0