結果

問題 No.1808 Fullgold Alchemist
ユーザー hiragnhiragn
提出日時 2022-12-03 22:42:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,696 KB
最終ジャッジ日時 2024-10-11 01:48:52
合計ジャッジ時間 9,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 73 ms
14,752 KB
testcase_06 AC 234 ms
26,380 KB
testcase_07 AC 101 ms
26,576 KB
testcase_08 AC 1,136 ms
32,692 KB
testcase_09 AC 290 ms
32,696 KB
testcase_10 AC 156 ms
32,692 KB
testcase_11 AC 275 ms
32,568 KB
testcase_12 AC 120 ms
28,572 KB
testcase_13 AC 359 ms
28,564 KB
testcase_14 AC 425 ms
28,576 KB
testcase_15 AC 290 ms
28,440 KB
testcase_16 AC 39 ms
11,264 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 71 ms
13,488 KB
testcase_19 AC 34 ms
11,008 KB
testcase_20 AC 113 ms
14,864 KB
testcase_21 AC 52 ms
12,404 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 43 ms
11,776 KB
testcase_24 AC 39 ms
11,136 KB
testcase_25 AC 37 ms
11,392 KB
testcase_26 AC 108 ms
14,392 KB
testcase_27 AC 129 ms
14,884 KB
testcase_28 AC 397 ms
30,864 KB
testcase_29 AC 156 ms
17,332 KB
testcase_30 AC 136 ms
16,612 KB
testcase_31 AC 488 ms
29,428 KB
testcase_32 AC 228 ms
21,800 KB
testcase_33 AC 482 ms
26,212 KB
testcase_34 AC 359 ms
31,256 KB
testcase_35 AC 358 ms
24,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate


def main():
    n, m = map(int, input().split())
    a = [0] + list(map(int, input().split()))
    acc = list(accumulate(a))
    
    def isok(k):
        return all(acc[i] >= m * k * i for i in range(1, n))

    left = 0
    right = 10 ** 9 + 1
    while right - left > 1:
        mid = (left + right) // 2
        if isok(mid):
            left = mid
        else:
            right = mid
    print(left)


if __name__ == "__main__":
    main()
0