結果

問題 No.1071 ベホマラー
ユーザー kcvlexkcvlex
提出日時 2020-06-05 21:48:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 699 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 43,704 KB
最終ジャッジ日時 2024-12-17 14:15:52
合計ジャッジ時間 37,969 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,568 KB
testcase_01 AC 28 ms
32,356 KB
testcase_02 AC 28 ms
17,700 KB
testcase_03 AC 30 ms
17,576 KB
testcase_04 AC 29 ms
17,700 KB
testcase_05 AC 29 ms
32,744 KB
testcase_06 AC 30 ms
17,572 KB
testcase_07 AC 31 ms
32,460 KB
testcase_08 AC 30 ms
17,568 KB
testcase_09 AC 27 ms
32,464 KB
testcase_10 AC 1,789 ms
26,800 KB
testcase_11 AC 1,723 ms
19,556 KB
testcase_12 AC 1,173 ms
16,612 KB
testcase_13 TLE -
testcase_14 AC 1,928 ms
20,312 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def ceil_div(x, y):
    ret = x // y
    if x % y == 0: 
        return ret
    else:
        return ret + 1;

def calc(n, k, x, y, av, ycnt):
    ret = y * ycnt
    for e in av:
        rest = e - k * ycnt
        if rest <= 0:
            continue
        ret += x * ceil_div(rest, k)
    return ret


tmp = tuple(list(map(int, input().split(' '))))
a = list(map(int, input().split(' ')))
av = [ e - 1 for e in a ]
n, k, x, y = tmp
x0 = 0
x3 = int(1e18)
f = lambda arg: calc(n, k, x, y, av, arg)
while 2 < x3 - x0:
    x1 = (2 * x0 + x3) // 3
    x2 = (x0 + 2 * x3) // 3
    f1 = f(x1)
    f2 = f(x2)
    if f1 < f2:
        x3 = x2
    else:
        x0 = x1
print(min([f(x0), f(x0+1), f(x0+2)]))
0