結果

問題 No.1071 ベホマラー
ユーザー kcvlexkcvlex
提出日時 2020-06-05 21:48:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 699 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,868 KB
最終ジャッジ日時 2024-05-09 20:47:08
合計ジャッジ時間 16,796 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
16,256 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 23 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 1,658 ms
19,848 KB
testcase_11 AC 1,597 ms
19,432 KB
testcase_12 AC 1,094 ms
16,608 KB
testcase_13 TLE -
testcase_14 AC 1,804 ms
20,156 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

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