結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 32 ms
10,496 KB
testcase_05 AC 75 ms
14,624 KB
testcase_06 AC 378 ms
22,944 KB
testcase_07 AC 92 ms
22,944 KB
testcase_08 TLE -
testcase_09 AC 467 ms
32,284 KB
testcase_10 AC 172 ms
32,416 KB
testcase_11 AC 450 ms
32,416 KB
testcase_12 AC 109 ms
27,396 KB
testcase_13 AC 622 ms
27,260 KB
testcase_14 AC 556 ms
27,276 KB
testcase_15 AC 450 ms
27,268 KB
testcase_16 AC 45 ms
11,008 KB
testcase_17 AC 32 ms
10,496 KB
testcase_18 AC 99 ms
13,056 KB
testcase_19 AC 38 ms
10,624 KB
testcase_20 AC 160 ms
14,460 KB
testcase_21 AC 57 ms
12,032 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 51 ms
11,520 KB
testcase_24 AC 48 ms
10,880 KB
testcase_25 AC 39 ms
10,880 KB
testcase_26 AC 223 ms
13,476 KB
testcase_27 AC 256 ms
14,608 KB
testcase_28 AC 711 ms
30,452 KB
testcase_29 AC 269 ms
17,056 KB
testcase_30 AC 223 ms
16,200 KB
testcase_31 AC 867 ms
29,148 KB
testcase_32 AC 475 ms
21,272 KB
testcase_33 AC 760 ms
25,940 KB
testcase_34 AC 735 ms
31,128 KB
testcase_35 AC 829 ms
24,124 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)+1

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