結果

問題 No.1808 Fullgold Alchemist
ユーザー rlangevinrlangevin
提出日時 2023-01-01 21:32:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 103,808 KB
最終ジャッジ日時 2024-11-27 00:18:21
合計ジャッジ時間 4,461 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(m):
    cnt = 0
    for i in range(N):
        if m * M > A[i] + cnt:
            return False
        cnt += A[i] - m * M
        if cnt < 0:
            return False
    return True

N, M = map(int, input().split())
A = list(map(int, input().split()))
yes = 0
no = 10 ** 18
while no - yes != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid
print(yes)
0