結果

問題 No.2373 wa, wo, n
ユーザー lllllll88938494lllllll88938494
提出日時 2023-07-07 21:46:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 84,364 KB
最終ジャッジ日時 2024-07-21 17:34:42
合計ジャッジ時間 3,517 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,180 KB
testcase_01 AC 41 ms
52,872 KB
testcase_02 AC 39 ms
52,472 KB
testcase_03 AC 39 ms
52,384 KB
testcase_04 AC 37 ms
52,492 KB
testcase_05 AC 38 ms
53,816 KB
testcase_06 AC 38 ms
52,360 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 38 ms
53,868 KB
testcase_09 AC 39 ms
52,628 KB
testcase_10 AC 37 ms
53,228 KB
testcase_11 AC 38 ms
53,020 KB
testcase_12 AC 38 ms
52,232 KB
testcase_13 AC 38 ms
52,980 KB
testcase_14 AC 71 ms
77,320 KB
testcase_15 AC 39 ms
54,520 KB
testcase_16 AC 72 ms
78,008 KB
testcase_17 AC 63 ms
70,064 KB
testcase_18 AC 51 ms
62,832 KB
testcase_19 AC 41 ms
56,636 KB
testcase_20 AC 43 ms
60,592 KB
testcase_21 AC 42 ms
55,340 KB
testcase_22 AC 43 ms
58,296 KB
testcase_23 AC 44 ms
62,712 KB
testcase_24 AC 37 ms
51,872 KB
testcase_25 AC 38 ms
52,344 KB
testcase_26 AC 37 ms
52,640 KB
testcase_27 AC 37 ms
52,444 KB
testcase_28 AC 37 ms
53,088 KB
testcase_29 AC 38 ms
52,368 KB
testcase_30 AC 38 ms
52,460 KB
testcase_31 AC 38 ms
52,468 KB
testcase_32 AC 83 ms
84,364 KB
testcase_33 AC 45 ms
63,504 KB
testcase_34 AC 56 ms
72,780 KB
testcase_35 AC 46 ms
62,932 KB
testcase_36 AC 61 ms
74,904 KB
testcase_37 AC 55 ms
72,364 KB
testcase_38 AC 53 ms
71,044 KB
testcase_39 AC 54 ms
71,084 KB
testcase_40 AC 72 ms
78,644 KB
testcase_41 AC 71 ms
78,244 KB
testcase_42 AC 56 ms
72,276 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 len(s) > 2 and s[-1] =='?' and s[-2] == '?' and s[-3] =='w':
            s.pop()
            s.pop()
            s.pop()
            f =1
        elif 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