結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
61,176 KB
testcase_01 AC 36 ms
52,788 KB
testcase_02 AC 37 ms
52,932 KB
testcase_03 AC 37 ms
53,548 KB
testcase_04 AC 42 ms
62,484 KB
testcase_05 AC 37 ms
52,928 KB
testcase_06 AC 37 ms
52,752 KB
testcase_07 AC 37 ms
53,944 KB
testcase_08 AC 38 ms
54,056 KB
testcase_09 AC 37 ms
53,068 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
            
    print(X*behoimi+Y*behomara)

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