結果

問題 No.1211 円環はお断り
ユーザー Yatharth SinghYatharth Singh
提出日時 2024-07-13 15:12:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 864 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 108,452 KB
最終ジャッジ日時 2024-07-13 15:13:06
合計ジャッジ時間 17,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,812 KB
testcase_01 AC 43 ms
53,668 KB
testcase_02 AC 41 ms
53,688 KB
testcase_03 AC 44 ms
53,004 KB
testcase_04 AC 38 ms
52,892 KB
testcase_05 AC 42 ms
53,248 KB
testcase_06 AC 38 ms
52,764 KB
testcase_07 AC 45 ms
59,620 KB
testcase_08 AC 39 ms
53,220 KB
testcase_09 AC 48 ms
62,556 KB
testcase_10 AC 50 ms
63,140 KB
testcase_11 AC 48 ms
61,504 KB
testcase_12 AC 43 ms
59,408 KB
testcase_13 AC 351 ms
91,420 KB
testcase_14 AC 653 ms
97,208 KB
testcase_15 AC 400 ms
97,176 KB
testcase_16 AC 724 ms
107,604 KB
testcase_17 AC 108 ms
76,444 KB
testcase_18 AC 406 ms
94,700 KB
testcase_19 AC 149 ms
76,308 KB
testcase_20 AC 136 ms
76,988 KB
testcase_21 AC 126 ms
77,224 KB
testcase_22 AC 515 ms
91,740 KB
testcase_23 AC 567 ms
94,660 KB
testcase_24 AC 312 ms
85,136 KB
testcase_25 AC 86 ms
76,052 KB
testcase_26 AC 449 ms
99,176 KB
testcase_27 AC 307 ms
84,944 KB
testcase_28 AC 674 ms
100,304 KB
testcase_29 AC 419 ms
94,040 KB
testcase_30 AC 575 ms
100,100 KB
testcase_31 AC 246 ms
83,464 KB
testcase_32 AC 708 ms
104,012 KB
testcase_33 AC 816 ms
108,112 KB
testcase_34 AC 812 ms
107,932 KB
testcase_35 AC 815 ms
107,932 KB
testcase_36 AC 839 ms
108,140 KB
testcase_37 AC 811 ms
107,616 KB
testcase_38 AC 862 ms
107,920 KB
testcase_39 AC 864 ms
108,128 KB
testcase_40 AC 119 ms
108,452 KB
testcase_41 AC 40 ms
52,952 KB
testcase_42 AC 41 ms
53,200 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):
    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