結果

問題 No.1808 Fullgold Alchemist
ユーザー titiatitia
提出日時 2022-01-14 21:29:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-11-20 07:54:18
合計ジャッジ時間 16,280 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,368 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 29 ms
10,368 KB
testcase_05 AC 69 ms
14,492 KB
testcase_06 AC 133 ms
24,460 KB
testcase_07 AC 84 ms
24,332 KB
testcase_08 WA -
testcase_09 AC 1,772 ms
32,660 KB
testcase_10 WA -
testcase_11 AC 1,640 ms
32,536 KB
testcase_12 AC 159 ms
27,256 KB
testcase_13 AC 776 ms
27,384 KB
testcase_14 AC 526 ms
28,440 KB
testcase_15 AC 648 ms
27,516 KB
testcase_16 AC 41 ms
10,880 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 125 ms
12,928 KB
testcase_19 AC 32 ms
10,752 KB
testcase_20 AC 218 ms
14,716 KB
testcase_21 AC 110 ms
12,032 KB
testcase_22 AC 27 ms
10,496 KB
testcase_23 AC 87 ms
11,648 KB
testcase_24 AC 43 ms
10,880 KB
testcase_25 AC 54 ms
11,136 KB
testcase_26 AC 180 ms
13,464 KB
testcase_27 AC 177 ms
14,784 KB
testcase_28 AC 890 ms
30,576 KB
testcase_29 AC 336 ms
17,312 KB
testcase_30 AC 226 ms
16,320 KB
testcase_31 AC 742 ms
28,324 KB
testcase_32 AC 346 ms
21,392 KB
testcase_33 AC 543 ms
25,448 KB
testcase_34 AC 757 ms
30,388 KB
testcase_35 AC 519 ms
24,376 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

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

print(OK//M)
0