結果

問題 No.2373 wa, wo, n
ユーザー dangodango
提出日時 2023-07-08 08:42:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 106,752 KB
最終ジャッジ日時 2024-07-22 04:31:41
合計ジャッジ時間 4,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
62,848 KB
testcase_01 AC 62 ms
62,720 KB
testcase_02 AC 62 ms
62,720 KB
testcase_03 AC 65 ms
62,976 KB
testcase_04 AC 62 ms
63,232 KB
testcase_05 AC 62 ms
62,720 KB
testcase_06 AC 61 ms
62,592 KB
testcase_07 AC 64 ms
63,104 KB
testcase_08 AC 65 ms
62,592 KB
testcase_09 AC 62 ms
62,720 KB
testcase_10 AC 62 ms
63,104 KB
testcase_11 AC 63 ms
62,592 KB
testcase_12 AC 62 ms
62,976 KB
testcase_13 AC 63 ms
62,848 KB
testcase_14 AC 98 ms
82,048 KB
testcase_15 AC 90 ms
77,696 KB
testcase_16 AC 125 ms
96,128 KB
testcase_17 AC 78 ms
73,984 KB
testcase_18 AC 71 ms
66,048 KB
testcase_19 AC 65 ms
63,104 KB
testcase_20 AC 64 ms
63,872 KB
testcase_21 AC 63 ms
63,104 KB
testcase_22 AC 65 ms
63,488 KB
testcase_23 AC 64 ms
63,744 KB
testcase_24 AC 63 ms
62,720 KB
testcase_25 AC 63 ms
62,720 KB
testcase_26 AC 66 ms
62,720 KB
testcase_27 AC 63 ms
62,720 KB
testcase_28 AC 63 ms
62,720 KB
testcase_29 AC 63 ms
62,592 KB
testcase_30 AC 63 ms
62,720 KB
testcase_31 AC 63 ms
62,848 KB
testcase_32 AC 129 ms
96,256 KB
testcase_33 AC 63 ms
63,872 KB
testcase_34 AC 178 ms
106,752 KB
testcase_35 AC 64 ms
63,872 KB
testcase_36 AC 99 ms
86,656 KB
testcase_37 AC 98 ms
87,040 KB
testcase_38 AC 98 ms
87,296 KB
testcase_39 AC 102 ms
87,552 KB
testcase_40 AC 99 ms
84,224 KB
testcase_41 AC 101 ms
84,096 KB
testcase_42 AC 97 ms
87,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
n = input()
line = input()
if n == 0:
    pass
if re.match(r'^(n|w[ao?]|\?[ao]?)*$', line):
    print('Yes')
else:
    print('No')
0