結果

問題 No.1808 Fullgold Alchemist
ユーザー 👑 rin204rin204
提出日時 2022-01-18 00:51:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 104,440 KB
最終ジャッジ日時 2024-11-23 13:03:56
合計ジャッジ時間 3,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,396 KB
testcase_01 AC 38 ms
52,868 KB
testcase_02 AC 35 ms
52,276 KB
testcase_03 AC 35 ms
52,560 KB
testcase_04 AC 35 ms
52,396 KB
testcase_05 AC 73 ms
97,500 KB
testcase_06 AC 83 ms
103,040 KB
testcase_07 AC 84 ms
104,208 KB
testcase_08 AC 100 ms
102,508 KB
testcase_09 AC 101 ms
102,612 KB
testcase_10 AC 98 ms
102,528 KB
testcase_11 AC 96 ms
102,008 KB
testcase_12 AC 86 ms
103,132 KB
testcase_13 AC 88 ms
104,440 KB
testcase_14 AC 85 ms
101,988 KB
testcase_15 AC 88 ms
102,340 KB
testcase_16 AC 43 ms
61,408 KB
testcase_17 AC 37 ms
54,188 KB
testcase_18 AC 47 ms
66,692 KB
testcase_19 AC 40 ms
61,164 KB
testcase_20 AC 50 ms
71,032 KB
testcase_21 AC 41 ms
63,572 KB
testcase_22 AC 35 ms
52,688 KB
testcase_23 AC 41 ms
62,836 KB
testcase_24 AC 44 ms
60,164 KB
testcase_25 AC 44 ms
60,948 KB
testcase_26 AC 47 ms
66,368 KB
testcase_27 AC 48 ms
69,104 KB
testcase_28 AC 85 ms
102,716 KB
testcase_29 AC 54 ms
74,108 KB
testcase_30 AC 53 ms
72,696 KB
testcase_31 AC 79 ms
98,536 KB
testcase_32 AC 69 ms
83,952 KB
testcase_33 AC 74 ms
93,636 KB
testcase_34 AC 85 ms
102,500 KB
testcase_35 AC 71 ms
89,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
tot = 0
min_ = 1 << 30
for i, a in enumerate(A, 1):
    tot += a
    min_ = min(min_, tot // i)
print(min_ // m)
0