結果

問題 No.1808 Fullgold Alchemist
ユーザー ytqm3ytqm3
提出日時 2022-01-14 21:52:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 142 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 104,620 KB
最終ジャッジ日時 2024-11-20 09:40:56
合計ジャッジ時間 3,909 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
sm=0
mn=10**18
for i in range(N):
  sm+=A[i]
  mn=min(mn,sm//(i+1))
print(mn//M)
0