結果

問題 No.1071 ベホマラー
ユーザー maspymaspy
提出日時 2020-06-05 22:21:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 48,544 KB
最終ジャッジ日時 2024-05-09 21:55:08
合計ジャッジ時間 14,992 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 512 ms
44,204 KB
testcase_01 AC 515 ms
44,332 KB
testcase_02 AC 566 ms
44,196 KB
testcase_03 AC 513 ms
44,320 KB
testcase_04 AC 522 ms
44,452 KB
testcase_05 AC 520 ms
44,064 KB
testcase_06 AC 514 ms
44,056 KB
testcase_07 AC 511 ms
44,060 KB
testcase_08 AC 511 ms
44,576 KB
testcase_09 AC 507 ms
44,188 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 527 ms
45,428 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 537 ms
47,900 KB
testcase_18 AC 534 ms
47,652 KB
testcase_19 AC 544 ms
48,284 KB
testcase_20 AC 532 ms
47,628 KB
testcase_21 WA -
testcase_22 AC 530 ms
48,032 KB
testcase_23 AC 540 ms
48,288 KB
testcase_24 AC 540 ms
48,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N, K, X, Y = map(int, readline().split())
A = np.array(read().split(), np.int64)

# 必要回数になおす
A -= 1
A = (A + K - 1) // K

A.sort()
A = A[::-1]
A = np.append(A, 0)

Acum = np.cumsum(A)
x = Acum - np.arange(1, N + 2) * A
y = A

cost = x * X + y * Y

print(cost.min())
0