結果

問題 No.2373 wa, wo, n
ユーザー prd_xxxprd_xxx
提出日時 2023-07-07 22:06:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 718 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 76,036 KB
最終ジャッジ日時 2024-07-21 18:09:03
合計ジャッジ時間 3,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,416 KB
testcase_01 AC 40 ms
53,112 KB
testcase_02 AC 41 ms
52,596 KB
testcase_03 AC 40 ms
52,432 KB
testcase_04 AC 40 ms
52,860 KB
testcase_05 AC 41 ms
52,840 KB
testcase_06 AC 40 ms
52,816 KB
testcase_07 AC 41 ms
52,724 KB
testcase_08 AC 40 ms
51,936 KB
testcase_09 AC 38 ms
53,420 KB
testcase_10 AC 41 ms
52,240 KB
testcase_11 AC 40 ms
53,248 KB
testcase_12 AC 41 ms
52,868 KB
testcase_13 AC 41 ms
53,884 KB
testcase_14 AC 70 ms
75,484 KB
testcase_15 WA -
testcase_16 AC 70 ms
75,860 KB
testcase_17 AC 58 ms
69,372 KB
testcase_18 AC 51 ms
60,900 KB
testcase_19 AC 52 ms
66,140 KB
testcase_20 AC 61 ms
75,708 KB
testcase_21 AC 52 ms
66,776 KB
testcase_22 AC 55 ms
71,168 KB
testcase_23 AC 65 ms
75,892 KB
testcase_24 AC 40 ms
53,116 KB
testcase_25 AC 42 ms
52,468 KB
testcase_26 AC 40 ms
53,376 KB
testcase_27 AC 39 ms
52,868 KB
testcase_28 AC 41 ms
53,084 KB
testcase_29 AC 40 ms
52,272 KB
testcase_30 AC 39 ms
52,156 KB
testcase_31 AC 38 ms
53,004 KB
testcase_32 AC 71 ms
75,744 KB
testcase_33 AC 66 ms
75,780 KB
testcase_34 AC 58 ms
73,468 KB
testcase_35 AC 41 ms
53,940 KB
testcase_36 AC 56 ms
73,096 KB
testcase_37 AC 53 ms
71,804 KB
testcase_38 AC 53 ms
71,712 KB
testcase_39 AC 51 ms
66,280 KB
testcase_40 AC 68 ms
76,036 KB
testcase_41 AC 69 ms
75,672 KB
testcase_42 AC 67 ms
75,344 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=='?' or buf == '':
    print('Yes')
else:
    print('No')
0