結果

問題 No.1071 ベホマラー
ユーザー stngstng
提出日時 2022-09-01 19:33:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 85,284 KB
最終ジャッジ日時 2024-11-14 10:41:30
合計ジャッジ時間 4,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,620 KB
testcase_01 AC 38 ms
52,628 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 42 ms
54,180 KB
testcase_04 AC 38 ms
52,640 KB
testcase_05 AC 38 ms
53,588 KB
testcase_06 AC 38 ms
53,168 KB
testcase_07 AC 41 ms
59,056 KB
testcase_08 AC 42 ms
58,264 KB
testcase_09 AC 38 ms
52,736 KB
testcase_10 AC 157 ms
83,856 KB
testcase_11 AC 172 ms
82,528 KB
testcase_12 AC 88 ms
80,000 KB
testcase_13 AC 178 ms
81,920 KB
testcase_14 AC 107 ms
84,004 KB
testcase_15 AC 127 ms
84,980 KB
testcase_16 AC 136 ms
85,256 KB
testcase_17 AC 178 ms
84,664 KB
testcase_18 AC 141 ms
84,976 KB
testcase_19 AC 218 ms
84,976 KB
testcase_20 AC 99 ms
79,796 KB
testcase_21 AC 258 ms
85,284 KB
testcase_22 AC 97 ms
80,128 KB
testcase_23 AC 103 ms
84,132 KB
testcase_24 AC 129 ms
84,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,x,y = map(int,input().split())
a = [int(i)-1 for i in input().split()]

low = 0
high = (k-1+max(a))//k

def f(num):
    val = num*y
    for i in range(n):
        tmp = (max(0,a[i]-num*k)+k-1)//k
        val += tmp*x
    return val
#print(low,high)
#exit()
cnt = 0
while low+1 < high:
    c1 = int((low*2+high)/3)
    c2 = int((low+high*2)/3)
    
    if f(c1) > f(c2):
        if low == c1:
            low += 1
        else:
            low = c1
    else:
        if high == c2:
            high -= 1
        else:
            high = c2

ans = min(f(high),f(low))
print(ans)
0