結果

問題 No.1211 円環はお断り
ユーザー Yatharth SinghYatharth Singh
提出日時 2024-07-13 15:05:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 108,224 KB
最終ジャッジ日時 2024-07-13 15:05:25
合計ジャッジ時間 10,465 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,328 KB
testcase_01 AC 35 ms
52,544 KB
testcase_02 AC 37 ms
53,672 KB
testcase_03 AC 35 ms
53,328 KB
testcase_04 AC 35 ms
53,136 KB
testcase_05 AC 34 ms
52,748 KB
testcase_06 AC 35 ms
52,820 KB
testcase_07 AC 57 ms
59,812 KB
testcase_08 AC 37 ms
53,148 KB
testcase_09 AC 45 ms
61,672 KB
testcase_10 AC 45 ms
62,268 KB
testcase_11 AC 42 ms
61,856 KB
testcase_12 AC 39 ms
59,332 KB
testcase_13 AC 189 ms
91,836 KB
testcase_14 AC 380 ms
97,088 KB
testcase_15 AC 226 ms
96,856 KB
testcase_16 AC 368 ms
107,800 KB
testcase_17 AC 81 ms
76,180 KB
testcase_18 AC 225 ms
94,652 KB
testcase_19 AC 97 ms
76,236 KB
testcase_20 AC 97 ms
77,336 KB
testcase_21 AC 92 ms
77,092 KB
testcase_22 AC 262 ms
92,024 KB
testcase_23 AC 317 ms
94,536 KB
testcase_24 AC 178 ms
85,252 KB
testcase_25 AC 72 ms
76,460 KB
testcase_26 AC 253 ms
98,792 KB
testcase_27 AC 171 ms
85,748 KB
testcase_28 AC 332 ms
100,200 KB
testcase_29 AC 267 ms
94,560 KB
testcase_30 AC 302 ms
100,184 KB
testcase_31 AC 142 ms
83,668 KB
testcase_32 AC 378 ms
104,824 KB
testcase_33 AC 440 ms
107,824 KB
testcase_34 AC 434 ms
107,800 KB
testcase_35 AC 426 ms
107,944 KB
testcase_36 AC 443 ms
107,692 KB
testcase_37 AC 437 ms
108,088 KB
testcase_38 AC 432 ms
107,712 KB
testcase_39 AC 444 ms
108,224 KB
testcase_40 AC 113 ms
107,908 KB
testcase_41 AC 34 ms
53,204 KB
testcase_42 AC 37 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
from itertools import accumulate

n, k = map(int, input().split())
nums = list(map(int, input().split()))
preSum = [0] + list(accumulate(nums + nums))

def check(mid: int) -> bool:
    max_ = bisect_right(preSum, mid)
    for start in range(max_):
        if start > n:
            break
        cur = start
        for _ in range(k):
            cur = bisect_left(preSum, preSum[cur] + mid, lo=cur)
            if cur > start + n:
                break
        else:
            return True
    return False

l, r = 0, (sum(nums) // k) + 1
while l <= r:
    mid = (l + r) // 2
    if check(mid):
        l = mid + 1
    else:
        r = mid - 1
print(r)
0