結果

問題 No.1071 ベホマラー
ユーザー s_shoheis_shohei
提出日時 2020-08-02 17:56:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 81,712 KB
実行使用メモリ 93,440 KB
最終ジャッジ日時 2024-07-19 03:43:19
合計ジャッジ時間 3,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 39 ms
51,688 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 33 ms
51,968 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 75 ms
88,320 KB
testcase_11 AC 73 ms
85,888 KB
testcase_12 AC 60 ms
77,824 KB
testcase_13 AC 73 ms
83,456 KB
testcase_14 AC 78 ms
89,088 KB
testcase_15 AC 81 ms
92,672 KB
testcase_16 AC 80 ms
92,928 KB
testcase_17 AC 83 ms
93,056 KB
testcase_18 AC 89 ms
92,788 KB
testcase_19 AC 86 ms
93,440 KB
testcase_20 AC 66 ms
92,032 KB
testcase_21 AC 70 ms
91,776 KB
testcase_22 AC 72 ms
92,160 KB
testcase_23 AC 75 ms
92,288 KB
testcase_24 AC 82 ms
93,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,x,y = map(int, input().split())
a = list(map(int, input().split()))
newa=[]

def ceil(a,b):
    return ((a - 1) // b) + 1

for tmp in a:
    if tmp==1:
        continue
    newa.append(ceil(tmp-1,k))

newa.sort()

all_cnt=0
single_cnt=0
nokori=len(newa)

for num in newa:
    need = num - all_cnt
    if nokori*x >= y:
        all_cnt+=need
        nokori-=1
    else:
        single_cnt+=need

print(all_cnt*y + single_cnt*x)
0