結果

問題 No.2373 wa, wo, n
ユーザー 👑 horiesinitihoriesiniti
提出日時 2023-08-11 04:32:55
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 103 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-04-28 21:29:14
合計ジャッジ時間 6,143 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 88 ms
12,032 KB
testcase_02 AC 94 ms
12,288 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 WA -
testcase_05 AC 87 ms
12,288 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 89 ms
12,032 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 87 ms
12,160 KB
testcase_10 AC 89 ms
12,160 KB
testcase_11 AC 90 ms
12,032 KB
testcase_12 AC 88 ms
12,288 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 88 ms
12,160 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 90 ms
12,288 KB
testcase_20 AC 92 ms
12,160 KB
testcase_21 AC 92 ms
12,288 KB
testcase_22 AC 92 ms
12,288 KB
testcase_23 AC 95 ms
12,416 KB
testcase_24 AC 88 ms
12,160 KB
testcase_25 AC 87 ms
12,032 KB
testcase_26 AC 89 ms
12,032 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 90 ms
12,032 KB
testcase_32 WA -
testcase_33 AC 93 ms
12,416 KB
testcase_34 AC 103 ms
28,800 KB
testcase_35 AC 91 ms
12,288 KB
testcase_36 AC 112 ms
29,440 KB
testcase_37 AC 103 ms
28,672 KB
testcase_38 AC 104 ms
28,672 KB
testcase_39 AC 121 ms
33,280 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 104 ms
28,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
s=gets.chomp
if /^(\?\?|\?a|\?o|w\?|wa|wo|n)+$/.match(s).nil? then
	puts "No"
else
	puts "Yes"
end
0