結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
43,700 KB
testcase_01 AC 500 ms
43,700 KB
testcase_02 AC 500 ms
43,932 KB
testcase_03 AC 504 ms
43,696 KB
testcase_04 AC 498 ms
43,928 KB
testcase_05 AC 566 ms
43,692 KB
testcase_06 AC 497 ms
43,696 KB
testcase_07 AC 505 ms
43,924 KB
testcase_08 AC 508 ms
43,700 KB
testcase_09 AC 508 ms
43,692 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 532 ms
45,884 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 539 ms
46,268 KB
testcase_18 AC 541 ms
46,644 KB
testcase_19 AC 539 ms
46,500 KB
testcase_20 AC 541 ms
45,964 KB
testcase_21 WA -
testcase_22 AC 539 ms
45,964 KB
testcase_23 AC 539 ms
45,852 KB
testcase_24 AC 539 ms
45,856 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, dtype=np.int64) * A
y = A

cost = x * X + y * Y

x, y

print(cost.min())
0