結果

問題 No.477 MVP
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2018-03-17 12:44:53
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 163 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-12-24 00:25:11
合計ジャッジ時間 2,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 82 ms
12,160 KB
testcase_07 AC 87 ms
12,160 KB
testcase_08 AC 78 ms
12,032 KB
testcase_09 AC 80 ms
12,288 KB
testcase_10 AC 80 ms
12,160 KB
testcase_11 AC 85 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split.map(&:to_i)
minimum_damage = N.quo(K + 1)

if minimum_damage.denominator == 1
  puts minimum_damage.to_i
else
  puts minimum_damage.to_f.ceil
end
0