結果

問題 No.2373 wa, wo, n
ユーザー H20H20
提出日時 2023-07-07 21:39:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 106,404 KB
最終ジャッジ日時 2024-07-21 17:24:41
合計ジャッジ時間 4,207 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,196 KB
testcase_01 AC 64 ms
63,420 KB
testcase_02 AC 54 ms
63,092 KB
testcase_03 AC 53 ms
63,348 KB
testcase_04 AC 54 ms
63,164 KB
testcase_05 AC 54 ms
64,156 KB
testcase_06 AC 53 ms
63,488 KB
testcase_07 AC 59 ms
62,876 KB
testcase_08 AC 53 ms
63,420 KB
testcase_09 AC 57 ms
63,784 KB
testcase_10 AC 54 ms
64,016 KB
testcase_11 AC 55 ms
64,092 KB
testcase_12 AC 54 ms
63,964 KB
testcase_13 AC 54 ms
63,184 KB
testcase_14 AC 87 ms
85,960 KB
testcase_15 AC 62 ms
69,852 KB
testcase_16 AC 88 ms
86,048 KB
testcase_17 AC 61 ms
70,072 KB
testcase_18 AC 58 ms
65,060 KB
testcase_19 AC 56 ms
64,340 KB
testcase_20 AC 62 ms
65,448 KB
testcase_21 AC 57 ms
64,796 KB
testcase_22 AC 60 ms
65,196 KB
testcase_23 AC 64 ms
65,564 KB
testcase_24 AC 55 ms
64,640 KB
testcase_25 AC 54 ms
64,240 KB
testcase_26 AC 54 ms
63,208 KB
testcase_27 AC 55 ms
63,160 KB
testcase_28 AC 55 ms
63,972 KB
testcase_29 AC 54 ms
63,624 KB
testcase_30 AC 54 ms
63,316 KB
testcase_31 AC 54 ms
63,596 KB
testcase_32 AC 88 ms
86,140 KB
testcase_33 AC 63 ms
66,960 KB
testcase_34 AC 114 ms
106,404 KB
testcase_35 AC 56 ms
65,412 KB
testcase_36 AC 85 ms
86,020 KB
testcase_37 AC 84 ms
87,380 KB
testcase_38 AC 84 ms
87,380 KB
testcase_39 AC 86 ms
87,312 KB
testcase_40 AC 88 ms
87,004 KB
testcase_41 AC 88 ms
86,500 KB
testcase_42 AC 84 ms
87,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
N = int(input())
S = input()
S = S.replace('w?','wa').replace('?a','wa').replace('?o','wo').replace('?','n')
ans = re.match('^(wa|wo|n)*$', S)
if ans:
    print('Yes')
else:
    print('No')
0