結果

問題 No.1808 Fullgold Alchemist
ユーザー H3PO4H3PO4
提出日時 2022-01-14 21:30:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 320 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,760 KB
最終ジャッジ日時 2024-11-20 07:56:33
合計ジャッジ時間 6,643 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 70 ms
14,608 KB
testcase_06 AC 175 ms
24,488 KB
testcase_07 AC 89 ms
24,360 KB
testcase_08 WA -
testcase_09 AC 213 ms
32,552 KB
testcase_10 AC 113 ms
32,760 KB
testcase_11 AC 203 ms
32,676 KB
testcase_12 AC 103 ms
28,572 KB
testcase_13 AC 267 ms
28,548 KB
testcase_14 AC 323 ms
28,820 KB
testcase_15 AC 218 ms
28,556 KB
testcase_16 AC 36 ms
11,008 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 60 ms
13,348 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 89 ms
14,728 KB
testcase_21 AC 47 ms
12,256 KB
testcase_22 AC 31 ms
10,496 KB
testcase_23 AC 40 ms
11,520 KB
testcase_24 AC 36 ms
11,008 KB
testcase_25 AC 34 ms
11,136 KB
testcase_26 AC 84 ms
13,612 KB
testcase_27 AC 101 ms
14,612 KB
testcase_28 AC 288 ms
30,848 KB
testcase_29 AC 124 ms
17,184 KB
testcase_30 AC 103 ms
16,336 KB
testcase_31 AC 353 ms
29,292 KB
testcase_32 AC 171 ms
21,532 KB
testcase_33 AC 346 ms
26,328 KB
testcase_34 AC 270 ms
31,136 KB
testcase_35 AC 276 ms
24,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = tuple(map(int, input().split()))


def isOK(x):
    cur = 0
    for a in A:
        cur += a - x
        if cur < 0:
            return False
    return True


l, r = 0, 10 ** 9
while r - l > 1:
    m = (r + l) // 2
    if isOK(m * M):
        l = m
    else:
        r = m
print(l)
0