結果

問題 No.1071 ベホマラー
ユーザー k-ish0212k-ish0212
提出日時 2020-06-05 22:16:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 738 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 52,104 KB
最終ジャッジ日時 2024-12-17 15:55:26
合計ジャッジ時間 15,066 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 471 ms
43,960 KB
testcase_01 AC 468 ms
44,472 KB
testcase_02 AC 482 ms
44,356 KB
testcase_03 AC 462 ms
44,216 KB
testcase_04 AC 462 ms
44,220 KB
testcase_05 AC 457 ms
44,088 KB
testcase_06 AC 455 ms
44,600 KB
testcase_07 AC 459 ms
44,348 KB
testcase_08 AC 465 ms
44,484 KB
testcase_09 AC 463 ms
44,608 KB
testcase_10 AC 548 ms
50,120 KB
testcase_11 AC 545 ms
50,484 KB
testcase_12 AC 532 ms
47,296 KB
testcase_13 AC 635 ms
48,952 KB
testcase_14 AC 545 ms
50,484 KB
testcase_15 AC 558 ms
51,916 KB
testcase_16 AC 553 ms
51,800 KB
testcase_17 AC 684 ms
51,804 KB
testcase_18 AC 738 ms
52,064 KB
testcase_19 AC 634 ms
51,804 KB
testcase_20 AC 563 ms
51,868 KB
testcase_21 AC 516 ms
51,744 KB
testcase_22 AC 559 ms
52,104 KB
testcase_23 AC 576 ms
51,868 KB
testcase_24 AC 575 ms
51,788 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