結果

問題 No.1808 Fullgold Alchemist
ユーザー vwxyzvwxyz
提出日時 2024-08-09 05:41:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,696 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-08-09 05:41:25
合計ジャッジ時間 17,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 66 ms
14,624 KB
testcase_06 AC 142 ms
24,540 KB
testcase_07 AC 103 ms
24,472 KB
testcase_08 AC 1,696 ms
33,280 KB
testcase_09 AC 1,685 ms
33,268 KB
testcase_10 AC 1,682 ms
33,140 KB
testcase_11 AC 1,665 ms
32,560 KB
testcase_12 AC 208 ms
28,692 KB
testcase_13 AC 735 ms
28,564 KB
testcase_14 AC 533 ms
29,072 KB
testcase_15 AC 702 ms
28,436 KB
testcase_16 AC 39 ms
11,136 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 105 ms
13,484 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 182 ms
15,120 KB
testcase_21 AC 118 ms
12,288 KB
testcase_22 AC 26 ms
10,880 KB
testcase_23 AC 75 ms
11,776 KB
testcase_24 AC 42 ms
11,136 KB
testcase_25 AC 51 ms
11,392 KB
testcase_26 AC 156 ms
14,268 KB
testcase_27 AC 150 ms
14,756 KB
testcase_28 AC 900 ms
30,860 KB
testcase_29 AC 315 ms
17,324 KB
testcase_30 AC 235 ms
16,612 KB
testcase_31 AC 704 ms
28,564 KB
testcase_32 AC 351 ms
21,668 KB
testcase_33 AC 531 ms
25,476 KB
testcase_34 AC 740 ms
30,540 KB
testcase_35 AC 501 ms
24,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Bisect_Int(ok,ng,is_ok):
    while abs(ok-ng)>1:
        mid=(ok+ng)//2
        if is_ok(mid):
            ok=mid
        else:
            ng=mid
    return ok

N,M=map(int,input().split())
A=list(map(int,input().split()))
def is_ok(ans):
    C=A[:]
    for i in range(N):
        if C[i]<ans:
            return False
        if i<N-1:
            C[i+1]+=C[i]-ans
    return True
ans=Bisect_Int(0,max(A)+1,is_ok)//M
print(ans)
0