結果

問題 No.1071 ベホマラー
ユーザー なつつーくなつつーく
提出日時 2020-06-06 12:27:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,312 KB
最終ジャッジ日時 2024-06-06 01:29:01
合計ジャッジ時間 4,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 223 ms
19,740 KB
testcase_11 AC 218 ms
19,720 KB
testcase_12 AC 146 ms
16,508 KB
testcase_13 AC 191 ms
18,476 KB
testcase_14 AC 220 ms
20,304 KB
testcase_15 AC 248 ms
21,720 KB
testcase_16 AC 245 ms
21,588 KB
testcase_17 AC 249 ms
21,596 KB
testcase_18 AC 257 ms
22,312 KB
testcase_19 AC 254 ms
21,708 KB
testcase_20 AC 219 ms
21,740 KB
testcase_21 AC 105 ms
21,736 KB
testcase_22 AC 220 ms
21,740 KB
testcase_23 AC 112 ms
21,604 KB
testcase_24 AC 241 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