結果

問題 No.1071 ベホマラー
ユーザー k-ish0212k-ish0212
提出日時 2020-06-05 22:16:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 799 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 52,388 KB
最終ジャッジ日時 2024-05-09 21:48:00
合計ジャッジ時間 18,638 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 506 ms
44,352 KB
testcase_01 AC 508 ms
44,732 KB
testcase_02 AC 507 ms
44,092 KB
testcase_03 AC 506 ms
44,472 KB
testcase_04 AC 508 ms
44,484 KB
testcase_05 AC 516 ms
44,104 KB
testcase_06 AC 509 ms
44,484 KB
testcase_07 AC 510 ms
44,220 KB
testcase_08 AC 509 ms
44,352 KB
testcase_09 AC 508 ms
44,728 KB
testcase_10 AC 571 ms
50,744 KB
testcase_11 AC 539 ms
49,984 KB
testcase_12 AC 491 ms
47,932 KB
testcase_13 AC 612 ms
49,344 KB
testcase_14 AC 584 ms
50,620 KB
testcase_15 AC 597 ms
52,272 KB
testcase_16 AC 595 ms
51,764 KB
testcase_17 AC 774 ms
51,664 KB
testcase_18 AC 799 ms
52,388 KB
testcase_19 AC 691 ms
51,652 KB
testcase_20 AC 611 ms
51,868 KB
testcase_21 AC 571 ms
51,840 KB
testcase_22 AC 607 ms
52,112 KB
testcase_23 AC 625 ms
51,864 KB
testcase_24 AC 623 ms
52,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import math
n,k,x,y = map(int , input().split())
a = list(map(int, input().split()))
a.sort()
a = np.array(a)
ans = 0
count = 0
val = y//x
# print(val)
a-=1
while True:
    if max(a) > 0:
        if val > n:
            for i in a:
                ans += math.ceil(i/k)
                # print(i)
                # print(a)
            print(ans)
            exit()
        while val >= 0:
            while a[-val-1] > 1:
                # a -= k
                tmp = math.ceil(a[-val-1]/k)
                a -= k * tmp
                ans += y * tmp
                # print('a')
                # print(a)
            while a[-val] > 1:
                tmp = math.ceil(a[-val]/k)
                a[-val] -= k * tmp
                ans += x * tmp
                # print('b')
                # print(a)
            val -= 1
        # print(a)

    else:
        print(ans)
        exit()
0