結果

問題 No.2373 wa, wo, n
ユーザー prd_xxxprd_xxx
提出日時 2023-07-07 22:06:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 705 bytes
コンパイル時間 699 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-07-21 18:08:10
合計ジャッジ時間 4,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 41 ms
51,456 KB
testcase_12 AC 41 ms
52,352 KB
testcase_13 AC 42 ms
52,352 KB
testcase_14 AC 69 ms
75,136 KB
testcase_15 WA -
testcase_16 AC 71 ms
75,392 KB
testcase_17 AC 57 ms
68,096 KB
testcase_18 AC 52 ms
60,416 KB
testcase_19 AC 55 ms
65,024 KB
testcase_20 AC 62 ms
75,652 KB
testcase_21 AC 51 ms
64,896 KB
testcase_22 AC 53 ms
69,876 KB
testcase_23 AC 67 ms
75,520 KB
testcase_24 AC 48 ms
51,968 KB
testcase_25 AC 48 ms
51,456 KB
testcase_26 AC 40 ms
52,352 KB
testcase_27 AC 42 ms
51,712 KB
testcase_28 AC 40 ms
51,840 KB
testcase_29 AC 41 ms
52,224 KB
testcase_30 AC 41 ms
51,456 KB
testcase_31 AC 45 ms
52,648 KB
testcase_32 AC 74 ms
75,692 KB
testcase_33 AC 65 ms
76,160 KB
testcase_34 AC 56 ms
72,192 KB
testcase_35 AC 42 ms
53,120 KB
testcase_36 AC 54 ms
72,704 KB
testcase_37 AC 52 ms
71,040 KB
testcase_38 AC 54 ms
70,912 KB
testcase_39 AC 54 ms
64,768 KB
testcase_40 AC 69 ms
75,776 KB
testcase_41 AC 68 ms
75,648 KB
testcase_42 AC 64 ms
75,844 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':
            assert False
        else:
            buf = '?'
if buf=='w':
    print('No')
else:
    print('Yes')
0