結果

問題 No.1071 ベホマラー
ユーザー syunsukesyunsuke
提出日時 2020-09-01 23:00:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 93,952 KB
最終ジャッジ日時 2024-11-20 20:26:44
合計ジャッジ時間 3,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 44 ms
51,968 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 90 ms
88,192 KB
testcase_11 AC 91 ms
87,040 KB
testcase_12 AC 76 ms
77,952 KB
testcase_13 AC 88 ms
84,480 KB
testcase_14 AC 94 ms
89,600 KB
testcase_15 AC 100 ms
92,928 KB
testcase_16 AC 98 ms
92,544 KB
testcase_17 AC 102 ms
93,952 KB
testcase_18 AC 101 ms
93,312 KB
testcase_19 AC 101 ms
93,568 KB
testcase_20 AC 81 ms
91,520 KB
testcase_21 AC 84 ms
92,160 KB
testcase_22 AC 81 ms
91,392 KB
testcase_23 AC 83 ms
91,904 KB
testcase_24 AC 92 ms
93,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,X,Y=map(int,input().split())
a=list(map(int,input().split()))
import math
A=[]
for i in range(N):
    A.append((a[i]-1)//K)
    if (a[i]-1)%K!=0:
        A[-1]+=1
#print(A)
M=int(Y/X)
A.sort(reverse=True)
if M>N-1:
    print(sum(A)*X)
else:
    ans=A[M]
    ANS=Y*ans
    #print(ANS)
    for i in range(N):
        A[i]=max(0,A[i]-ans)
    ANS+=X*sum(A)
    print(ANS)
0