結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 72 ms
14,500 KB
testcase_06 AC 381 ms
23,072 KB
testcase_07 AC 91 ms
22,816 KB
testcase_08 TLE -
testcase_09 AC 437 ms
32,540 KB
testcase_10 AC 173 ms
32,544 KB
testcase_11 AC 443 ms
32,544 KB
testcase_12 AC 105 ms
27,320 KB
testcase_13 AC 581 ms
27,260 KB
testcase_14 AC 543 ms
27,252 KB
testcase_15 AC 447 ms
27,264 KB
testcase_16 AC 45 ms
11,008 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 97 ms
13,312 KB
testcase_19 AC 35 ms
10,752 KB
testcase_20 AC 157 ms
14,588 KB
testcase_21 AC 56 ms
12,160 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 50 ms
11,648 KB
testcase_24 AC 45 ms
10,880 KB
testcase_25 AC 40 ms
11,264 KB
testcase_26 AC 207 ms
13,476 KB
testcase_27 AC 251 ms
14,608 KB
testcase_28 AC 738 ms
30,836 KB
testcase_29 AC 316 ms
17,184 KB
testcase_30 AC 229 ms
16,452 KB
testcase_31 AC 817 ms
29,272 KB
testcase_32 AC 426 ms
21,268 KB
testcase_33 AC 852 ms
26,192 KB
testcase_34 AC 718 ms
31,000 KB
testcase_35 AC 841 ms
24,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

OK=0
NG=max(A)

while NG>OK+1:
    mid=(OK+NG)//2

    now=0
    for a in A:
        now+=a
        now-=mid*M

        if now<0:
            NG=mid
            break
    else:
        if now<0:
            NG=mid
        else:
            OK=mid

print(OK)
0