結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,264 KB
testcase_01 AC 34 ms
52,284 KB
testcase_02 AC 36 ms
53,028 KB
testcase_03 AC 35 ms
52,288 KB
testcase_04 AC 35 ms
52,900 KB
testcase_05 AC 69 ms
98,192 KB
testcase_06 AC 77 ms
104,620 KB
testcase_07 AC 77 ms
103,520 KB
testcase_08 AC 92 ms
102,784 KB
testcase_09 AC 94 ms
102,532 KB
testcase_10 AC 95 ms
102,432 KB
testcase_11 AC 92 ms
102,124 KB
testcase_12 AC 80 ms
102,848 KB
testcase_13 AC 80 ms
103,336 KB
testcase_14 AC 81 ms
103,332 KB
testcase_15 AC 81 ms
102,152 KB
testcase_16 AC 40 ms
60,316 KB
testcase_17 AC 34 ms
52,744 KB
testcase_18 AC 43 ms
67,308 KB
testcase_19 AC 38 ms
60,064 KB
testcase_20 AC 47 ms
69,840 KB
testcase_21 AC 40 ms
62,692 KB
testcase_22 AC 37 ms
52,420 KB
testcase_23 AC 41 ms
62,076 KB
testcase_24 AC 41 ms
60,564 KB
testcase_25 AC 40 ms
60,700 KB
testcase_26 AC 43 ms
65,716 KB
testcase_27 AC 47 ms
68,068 KB
testcase_28 AC 80 ms
102,484 KB
testcase_29 AC 53 ms
73,448 KB
testcase_30 AC 51 ms
72,744 KB
testcase_31 AC 76 ms
97,972 KB
testcase_32 AC 62 ms
83,260 KB
testcase_33 AC 69 ms
92,644 KB
testcase_34 AC 80 ms
102,432 KB
testcase_35 AC 66 ms
90,272 KB
権限があれば一括ダウンロードができます

ソースコード

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