結果

問題 No.1808 Fullgold Alchemist
ユーザー NatsubiSoganNatsubiSogan
提出日時 2022-01-14 22:14:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,908 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,668 KB
最終ジャッジ日時 2024-11-20 11:14:33
合計ジャッジ時間 14,477 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 105 ms
14,852 KB
testcase_06 AC 520 ms
23,196 KB
testcase_07 AC 130 ms
23,072 KB
testcase_08 AC 1,908 ms
32,668 KB
testcase_09 AC 421 ms
32,668 KB
testcase_10 AC 198 ms
32,668 KB
testcase_11 AC 441 ms
32,544 KB
testcase_12 AC 150 ms
28,544 KB
testcase_13 AC 563 ms
28,540 KB
testcase_14 AC 511 ms
28,684 KB
testcase_15 AC 571 ms
28,544 KB
testcase_16 AC 43 ms
11,264 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 117 ms
13,336 KB
testcase_19 AC 33 ms
10,880 KB
testcase_20 AC 193 ms
14,844 KB
testcase_21 AC 56 ms
12,380 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 36 ms
11,904 KB
testcase_24 AC 49 ms
11,136 KB
testcase_25 AC 40 ms
11,264 KB
testcase_26 AC 182 ms
13,728 KB
testcase_27 AC 256 ms
14,856 KB
testcase_28 AC 889 ms
30,708 KB
testcase_29 AC 289 ms
17,432 KB
testcase_30 AC 241 ms
16,584 KB
testcase_31 AC 1,125 ms
29,408 KB
testcase_32 AC 457 ms
21,524 KB
testcase_33 AC 1,116 ms
26,324 KB
testcase_34 AC 766 ms
31,256 KB
testcase_35 AC 863 ms
24,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
l, r = -1, 10 ** 9 + 1
while r - l > 1:
    mid = (l + r) // 2
    amari = 0
    for i in a:
        if i >= mid * m:
            amari += i - mid * m
        else:
            if amari < mid * m - i:
                r = mid
                break
            amari -= mid * m - i
    else: l = mid
print(l)
0