結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 63 ms
14,744 KB
testcase_06 AC 335 ms
24,336 KB
testcase_07 AC 82 ms
24,368 KB
testcase_08 WA -
testcase_09 AC 399 ms
32,536 KB
testcase_10 AC 148 ms
32,660 KB
testcase_11 AC 404 ms
32,536 KB
testcase_12 AC 92 ms
27,508 KB
testcase_13 AC 638 ms
27,452 KB
testcase_14 AC 505 ms
28,564 KB
testcase_15 AC 432 ms
27,388 KB
testcase_16 AC 39 ms
11,136 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 96 ms
13,184 KB
testcase_19 AC 32 ms
10,880 KB
testcase_20 AC 148 ms
14,716 KB
testcase_21 AC 50 ms
12,032 KB
testcase_22 AC 26 ms
10,496 KB
testcase_23 AC 43 ms
11,776 KB
testcase_24 AC 39 ms
11,008 KB
testcase_25 AC 36 ms
11,264 KB
testcase_26 AC 184 ms
13,720 KB
testcase_27 AC 214 ms
14,736 KB
testcase_28 AC 680 ms
30,832 KB
testcase_29 AC 255 ms
17,188 KB
testcase_30 AC 206 ms
16,448 KB
testcase_31 AC 713 ms
28,652 KB
testcase_32 AC 395 ms
21,516 KB
testcase_33 AC 689 ms
25,572 KB
testcase_34 AC 650 ms
30,508 KB
testcase_35 AC 721 ms
24,284 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:
        OK=mid

print(OK)
0