結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,800 KB
testcase_01 AC 37 ms
53,200 KB
testcase_02 AC 35 ms
53,816 KB
testcase_03 AC 54 ms
53,116 KB
testcase_04 AC 35 ms
52,952 KB
testcase_05 AC 35 ms
53,348 KB
testcase_06 AC 37 ms
53,516 KB
testcase_07 AC 41 ms
59,496 KB
testcase_08 AC 35 ms
53,384 KB
testcase_09 AC 45 ms
61,540 KB
testcase_10 AC 45 ms
61,476 KB
testcase_11 AC 44 ms
62,868 KB
testcase_12 AC 38 ms
59,072 KB
testcase_13 AC 309 ms
91,664 KB
testcase_14 AC 569 ms
97,344 KB
testcase_15 AC 344 ms
96,876 KB
testcase_16 AC 630 ms
107,684 KB
testcase_17 AC 103 ms
76,720 KB
testcase_18 AC 416 ms
94,044 KB
testcase_19 AC 145 ms
76,540 KB
testcase_20 AC 135 ms
76,972 KB
testcase_21 AC 121 ms
76,908 KB
testcase_22 AC 475 ms
91,640 KB
testcase_23 AC 513 ms
94,584 KB
testcase_24 AC 266 ms
85,252 KB
testcase_25 AC 73 ms
75,864 KB
testcase_26 AC 389 ms
98,592 KB
testcase_27 AC 304 ms
85,108 KB
testcase_28 AC 614 ms
100,452 KB
testcase_29 AC 407 ms
94,320 KB
testcase_30 AC 577 ms
100,132 KB
testcase_31 AC 229 ms
83,672 KB
testcase_32 AC 708 ms
104,108 KB
testcase_33 AC 767 ms
107,744 KB
testcase_34 AC 838 ms
107,724 KB
testcase_35 AC 778 ms
107,936 KB
testcase_36 AC 802 ms
107,796 KB
testcase_37 AC 813 ms
108,212 KB
testcase_38 AC 813 ms
107,776 KB
testcase_39 AC 850 ms
108,676 KB
testcase_40 AC 116 ms
107,956 KB
testcase_41 AC 37 ms
53,012 KB
testcase_42 AC 38 ms
53,076 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)
            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