結果
問題 | No.1071 ベホマラー |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2022-03-27 23:46:59 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 436 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 82,360 KB |
実行使用メモリ | 91,132 KB |
最終ジャッジ日時 | 2024-11-06 16:52:17 |
合計ジャッジ時間 | 4,192 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,496 KB |
testcase_01 | AC | 38 ms
53,144 KB |
testcase_02 | AC | 38 ms
52,472 KB |
testcase_03 | AC | 38 ms
52,696 KB |
testcase_04 | AC | 37 ms
52,452 KB |
testcase_05 | AC | 41 ms
57,216 KB |
testcase_06 | AC | 42 ms
59,048 KB |
testcase_07 | AC | 41 ms
58,468 KB |
testcase_08 | AC | 42 ms
59,900 KB |
testcase_09 | AC | 38 ms
52,824 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
n,k,x,y = map(int,input().split()) A = list(map(int,input().split())) l = 0 r = 10**15 def calc(m): count = 0 for a in A: if a-1 <= m*k: continue count += (a-1-m*k+(k-1))//k*x return count + y*m while r > l+2: c1 = (l*2+r)//3 c2 = (l+r*2)//3 if calc(c1) <= calc(c2): r = c2 else: l = c1 ans = 10**10 for i in range(l,r+2): ans = min(ans,calc(i)) print(ans)