結果

問題 No.1808 Fullgold Alchemist
ユーザー pluto77pluto77
提出日時 2022-02-02 15:00:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,788 KB
最終ジャッジ日時 2024-06-11 09:25:22
合計ジャッジ時間 5,826 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 167 ms
14,848 KB
testcase_06 AC 204 ms
23,196 KB
testcase_07 AC 208 ms
23,060 KB
testcase_08 AC 221 ms
32,540 KB
testcase_09 AC 216 ms
32,788 KB
testcase_10 AC 216 ms
32,532 KB
testcase_11 AC 212 ms
32,532 KB
testcase_12 AC 226 ms
28,540 KB
testcase_13 AC 230 ms
28,408 KB
testcase_14 AC 228 ms
28,672 KB
testcase_15 AC 229 ms
28,404 KB
testcase_16 AC 31 ms
11,136 KB
testcase_17 AC 24 ms
10,496 KB
testcase_18 AC 55 ms
13,312 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 71 ms
14,928 KB
testcase_21 AC 42 ms
12,160 KB
testcase_22 AC 25 ms
10,624 KB
testcase_23 AC 36 ms
11,776 KB
testcase_24 AC 29 ms
11,264 KB
testcase_25 AC 31 ms
11,264 KB
testcase_26 AC 52 ms
13,716 KB
testcase_27 AC 61 ms
14,860 KB
testcase_28 AC 206 ms
30,832 KB
testcase_29 AC 86 ms
17,308 KB
testcase_30 AC 80 ms
16,572 KB
testcase_31 AC 192 ms
28,660 KB
testcase_32 AC 128 ms
21,640 KB
testcase_33 AC 166 ms
25,448 KB
testcase_34 AC 215 ms
30,384 KB
testcase_35 AC 161 ms
24,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1808
n,m=map(int,input().split())
a=list(map(int,input().split()))
res=a[0]
s=0
for i in range(n):
 s+=a[i]
 res=min(res,s//(i+1)//m)
print(res)
0