結果
問題 | No.1071 ベホマラー |
ユーザー | shi-mo |
提出日時 | 2020-10-01 22:52:45 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 263 bytes |
コンパイル時間 | 36 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 25,244 KB |
最終ジャッジ日時 | 2024-07-07 05:56:37 |
合計ジャッジ時間 | 5,118 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
19,228 KB |
testcase_01 | AC | 75 ms
12,160 KB |
testcase_02 | AC | 73 ms
12,160 KB |
testcase_03 | AC | 71 ms
12,160 KB |
testcase_04 | AC | 72 ms
12,288 KB |
testcase_05 | AC | 72 ms
12,032 KB |
testcase_06 | AC | 77 ms
12,288 KB |
testcase_07 | AC | 72 ms
12,032 KB |
testcase_08 | AC | 72 ms
12,160 KB |
testcase_09 | AC | 74 ms
12,032 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
n, h, x, y = gets.split.map(&:to_i) c = gets.split.map{|ai| ((ai.to_i-1).to_f / h).ceil }.sort! mp = 0 while (0 < n) do ci = c.shift break if ci.nil? if 0 == ci n -= 1 next end mp += ci * [n*x, y].min c.map!{|cj| cj - ci } n -= 1 end puts mp