結果
問題 | No.1071 ベホマラー |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2022-03-27 23:47:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 436 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 91,264 KB |
最終ジャッジ日時 | 2024-11-06 16:53:18 |
合計ジャッジ時間 | 13,834 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,352 KB |
testcase_01 | AC | 41 ms
57,856 KB |
testcase_02 | AC | 42 ms
57,856 KB |
testcase_03 | AC | 40 ms
52,096 KB |
testcase_04 | AC | 43 ms
58,752 KB |
testcase_05 | AC | 43 ms
58,112 KB |
testcase_06 | AC | 44 ms
58,496 KB |
testcase_07 | AC | 44 ms
59,008 KB |
testcase_08 | AC | 45 ms
59,392 KB |
testcase_09 | AC | 39 ms
51,840 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**20 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)