結果

問題 No.1071 ベホマラー
ユーザー なつつーくなつつーく
提出日時 2020-06-06 12:25:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 727 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,144 KB
最終ジャッジ日時 2024-06-06 01:27:54
合計ジャッジ時間 4,864 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
16,384 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 31 ms
10,752 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#-------------------------------------------------------------------
import sys
def p(*_a):
  _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