結果

問題 No.384 マス埋めゲーム2
ユーザー yuruhiyayuruhiya
提出日時 2019-09-15 00:19:41
言語 Ruby
(3.2.2)
結果
WA  
実行時間 -
コード長 62 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 11,364 KB
実行使用メモリ 15,392 KB
最終ジャッジ日時 2023-09-21 03:58:16
合計ジャッジ時間 3,390 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 83 ms
15,056 KB
testcase_02 AC 81 ms
15,240 KB
testcase_03 AC 82 ms
15,144 KB
testcase_04 AC 83 ms
15,136 KB
testcase_05 AC 81 ms
15,020 KB
testcase_06 AC 81 ms
15,156 KB
testcase_07 AC 83 ms
15,308 KB
testcase_08 AC 82 ms
15,292 KB
testcase_09 AC 82 ms
15,016 KB
testcase_10 AC 81 ms
15,048 KB
testcase_11 AC 83 ms
15,024 KB
testcase_12 AC 81 ms
15,140 KB
testcase_13 AC 81 ms
15,148 KB
testcase_14 AC 82 ms
15,012 KB
testcase_15 AC 82 ms
15,148 KB
testcase_16 AC 82 ms
15,144 KB
testcase_17 AC 81 ms
15,344 KB
testcase_18 AC 82 ms
15,060 KB
testcase_19 AC 81 ms
15,140 KB
testcase_20 WA -
testcase_21 AC 81 ms
15,144 KB
testcase_22 AC 81 ms
15,064 KB
testcase_23 AC 81 ms
15,048 KB
testcase_24 AC 81 ms
15,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h,w,n,k=gets.split.map &:to_i
puts (h+w-1)%n==k ? "YES" : "NO"
0