結果

問題 No.2373 wa, wo, n
ユーザー prd_xxxprd_xxx
提出日時 2023-07-07 21:58:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 671 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 76,132 KB
最終ジャッジ日時 2024-07-21 17:56:02
合計ジャッジ時間 3,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,000 KB
testcase_01 AC 33 ms
53,228 KB
testcase_02 AC 34 ms
51,816 KB
testcase_03 AC 34 ms
52,744 KB
testcase_04 AC 33 ms
52,276 KB
testcase_05 AC 33 ms
53,436 KB
testcase_06 AC 34 ms
52,116 KB
testcase_07 AC 35 ms
52,944 KB
testcase_08 AC 34 ms
53,172 KB
testcase_09 AC 34 ms
52,632 KB
testcase_10 AC 39 ms
52,360 KB
testcase_11 AC 36 ms
52,488 KB
testcase_12 AC 37 ms
54,012 KB
testcase_13 AC 37 ms
52,864 KB
testcase_14 AC 60 ms
75,708 KB
testcase_15 WA -
testcase_16 AC 61 ms
75,624 KB
testcase_17 AC 47 ms
68,208 KB
testcase_18 AC 45 ms
60,696 KB
testcase_19 AC 44 ms
66,348 KB
testcase_20 AC 53 ms
75,180 KB
testcase_21 AC 43 ms
65,900 KB
testcase_22 AC 48 ms
70,436 KB
testcase_23 AC 58 ms
75,872 KB
testcase_24 AC 33 ms
52,768 KB
testcase_25 AC 34 ms
53,032 KB
testcase_26 AC 35 ms
53,052 KB
testcase_27 AC 36 ms
52,712 KB
testcase_28 AC 35 ms
52,516 KB
testcase_29 AC 36 ms
52,792 KB
testcase_30 AC 37 ms
51,940 KB
testcase_31 AC 36 ms
52,008 KB
testcase_32 AC 62 ms
76,108 KB
testcase_33 AC 57 ms
76,132 KB
testcase_34 AC 50 ms
73,236 KB
testcase_35 AC 35 ms
54,844 KB
testcase_36 AC 49 ms
73,900 KB
testcase_37 AC 47 ms
73,384 KB
testcase_38 AC 47 ms
71,596 KB
testcase_39 AC 43 ms
65,592 KB
testcase_40 AC 58 ms
75,816 KB
testcase_41 AC 58 ms
75,608 KB
testcase_42 AC 55 ms
75,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
for c in S:
    if c not in 'waon?':
        exit(print('No'))

T = S.replace('n','').replace('wa','').replace('wo','')
if T=='':
    exit(print('Yes'))

T = T.replace('o','a')
assert all(c in 'wa?' for c in T)

if len(T) == 1:
    exit(print('Yes' if T=='?' else 'No'))

buf = ''
for c in T:
    if c == 'w':
        if buf=='w' or buf=='a':
            exit(print('No'))
        buf = 'w'
    elif c == 'a':
        if buf=='a' or buf=='':
            exit(print('No'))
        buf = ''
    else:
        if buf=='w':
            buf = ''
        elif buf=='a':
            exit(print('No'))
        else:
            buf = '?'
print('Yes')
0