結果

問題 No.1808 Fullgold Alchemist
ユーザー ryusukeryusuke
提出日時 2022-01-26 17:21:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 106,240 KB
最終ジャッジ日時 2024-06-02 12:00:29
合計ジャッジ時間 6,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 36 ms
52,068 KB
testcase_04 AC 35 ms
51,584 KB
testcase_05 AC 190 ms
103,040 KB
testcase_06 AC 232 ms
106,240 KB
testcase_07 AC 207 ms
105,704 KB
testcase_08 AC 231 ms
102,144 KB
testcase_09 AC 232 ms
102,144 KB
testcase_10 AC 234 ms
102,164 KB
testcase_11 AC 249 ms
102,016 KB
testcase_12 AC 209 ms
105,472 KB
testcase_13 AC 225 ms
105,440 KB
testcase_14 AC 214 ms
105,592 KB
testcase_15 AC 219 ms
105,540 KB
testcase_16 AC 47 ms
67,328 KB
testcase_17 AC 33 ms
52,480 KB
testcase_18 AC 72 ms
78,576 KB
testcase_19 AC 44 ms
63,872 KB
testcase_20 AC 87 ms
80,768 KB
testcase_21 AC 62 ms
75,648 KB
testcase_22 AC 38 ms
57,088 KB
testcase_23 AC 59 ms
75,480 KB
testcase_24 AC 48 ms
68,864 KB
testcase_25 AC 50 ms
68,608 KB
testcase_26 AC 70 ms
77,568 KB
testcase_27 AC 81 ms
79,488 KB
testcase_28 AC 236 ms
103,808 KB
testcase_29 AC 99 ms
83,184 KB
testcase_30 AC 95 ms
82,300 KB
testcase_31 AC 192 ms
100,224 KB
testcase_32 AC 140 ms
90,112 KB
testcase_33 AC 184 ms
97,284 KB
testcase_34 AC 219 ms
103,680 KB
testcase_35 AC 184 ms
94,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))

'''
<=> 二分探索で k にできるかどうか
<=> bool で判断する
<=> i番目までで合計がik個あればTrue
<=> Trueならば答えは floor(k/m)
'''

def is_ok(k: int):
    # i番目までの合計を ki 以上に維持できるかどうか
    bool = True
    cnt = 0
    for i in range(n):
        cnt += a[i]
        if cnt >= k * (i + 1): continue
        bool = False

    if bool:
        return True
    else:
       return False

def binary_search(left, right):
    while abs(left - right) > 1:
        mid = (left + right) // 2
        if is_ok(mid):
            left = mid
        else:
            right = mid

    return left

INF = 10 ** 18
l, r = -1, INF
print(binary_search(l, r) // m)
0