結果

問題 No.1071 ベホマラー
ユーザー kbyskbys
提出日時 2020-06-23 04:06:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 661 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 94,968 KB
最終ジャッジ日時 2024-07-03 19:05:37
合計ジャッジ時間 4,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
60,796 KB
testcase_01 AC 36 ms
53,504 KB
testcase_02 AC 39 ms
53,012 KB
testcase_03 AC 36 ms
53,564 KB
testcase_04 AC 41 ms
64,276 KB
testcase_05 AC 37 ms
52,752 KB
testcase_06 AC 36 ms
52,568 KB
testcase_07 AC 36 ms
53,024 KB
testcase_08 AC 36 ms
52,956 KB
testcase_09 AC 36 ms
52,476 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 bisect
import sys
input=sys.stdin.readline

def main(args):
    N, K, X, Y = map(int,input().split())
    A = list(map(lambda x:-(-(int(x)-1)//K), input().split()))
    
    A.sort()
    
    ans = float('inf')
    l = 0
    behomara = 0
    while True:
        if behomara >= A[l]:
            l = bisect.bisect_right(A,behomara)
        #回復したい人数
        res = N - l
        if Y < res*X:
            behomara += 1
        else:
            behoimi = sum(map(lambda x:x-behomara,A[l:]))
            break
        if res == 0:
            break
            
    print(X*behoimi+Y*behomara)

if __name__ == '__main__':
    main(sys.argv[1:])
0