結果

問題 No.1071 ベホマラー
ユーザー なつつーくなつつーく
提出日時 2020-06-06 12:27:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,376 KB
最終ジャッジ日時 2024-12-23 12:09:05
合計ジャッジ時間 5,478 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 218 ms
19,868 KB
testcase_11 AC 212 ms
19,712 KB
testcase_12 AC 158 ms
16,516 KB
testcase_13 AC 224 ms
18,604 KB
testcase_14 AC 264 ms
20,180 KB
testcase_15 AC 292 ms
21,720 KB
testcase_16 AC 295 ms
21,716 KB
testcase_17 AC 305 ms
21,844 KB
testcase_18 AC 303 ms
22,376 KB
testcase_19 AC 301 ms
21,720 KB
testcase_20 AC 251 ms
21,736 KB
testcase_21 AC 120 ms
21,732 KB
testcase_22 AC 251 ms
21,732 KB
testcase_23 AC 118 ms
21,732 KB
testcase_24 AC 266 ms
21,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#-------------------------------------------------------------------
import sys
def p(*_a):
  return
  _s=" ".join(map(str,_a))
  #print(_s)
  sys.stderr.write(_s+"\n")
#-------------------------------------------------------------------
import math

N,K,X,Y = map(int, input().split())
A = list(map(int, input().split()))

B = sorted(A)
C = [math.ceil((b-1)/K) for b in B]

p("A=",A)
p("B=",B)
p("C=",C)

hp = 1
ans = 0
for i in range(N):
  p("i, ans, hp = ", i, ans, hp)
  if B[i] <= hp: continue

  zan = B[i] - hp
  kai = math.ceil(zan / K)
  p("zan, kai =",zan, kai)

  if (N-i)*X >= Y:
    ans += kai * Y
    hp += kai * K
  else:
    ans += kai * X
    B[i] -= kai * K

  p("i, ans, hp = ", i, ans, hp)
  p("B=",B)



print(ans)
0