結果

問題 No.1211 円環はお断り
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-03-11 17:13:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 957 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 107,892 KB
最終ジャッジ日時 2024-09-18 06:35:46
合計ジャッジ時間 13,331 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,576 KB
testcase_01 AC 38 ms
53,564 KB
testcase_02 AC 38 ms
53,140 KB
testcase_03 AC 38 ms
53,420 KB
testcase_04 WA -
testcase_05 AC 38 ms
53,204 KB
testcase_06 AC 39 ms
52,440 KB
testcase_07 AC 45 ms
59,836 KB
testcase_08 AC 39 ms
52,744 KB
testcase_09 AC 46 ms
61,352 KB
testcase_10 WA -
testcase_11 AC 47 ms
60,972 KB
testcase_12 WA -
testcase_13 AC 204 ms
91,324 KB
testcase_14 WA -
testcase_15 AC 252 ms
96,760 KB
testcase_16 AC 369 ms
107,508 KB
testcase_17 AC 112 ms
76,616 KB
testcase_18 WA -
testcase_19 AC 100 ms
76,616 KB
testcase_20 WA -
testcase_21 AC 96 ms
77,020 KB
testcase_22 AC 273 ms
91,524 KB
testcase_23 AC 339 ms
94,756 KB
testcase_24 AC 184 ms
84,912 KB
testcase_25 AC 77 ms
76,132 KB
testcase_26 AC 278 ms
98,712 KB
testcase_27 AC 186 ms
85,436 KB
testcase_28 WA -
testcase_29 AC 242 ms
93,988 KB
testcase_30 AC 310 ms
100,124 KB
testcase_31 AC 159 ms
83,540 KB
testcase_32 AC 350 ms
104,024 KB
testcase_33 AC 438 ms
107,504 KB
testcase_34 AC 427 ms
107,476 KB
testcase_35 AC 437 ms
107,628 KB
testcase_36 AC 424 ms
107,528 KB
testcase_37 AC 436 ms
107,592 KB
testcase_38 AC 438 ms
107,596 KB
testcase_39 AC 460 ms
107,892 KB
testcase_40 AC 1,186 ms
107,840 KB
testcase_41 AC 39 ms
53,132 KB
testcase_42 AC 39 ms
52,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
from itertools import accumulate
import sys

input = lambda: sys.stdin.readline().rstrip("\r\n")
INF = int(4e18)

if __name__ == "__main__":
    n, k = map(int, input().split())
    nums = list(map(int, input().split()))

    def check(mid: int) -> bool:
        """每段>=mid,是否能分成>=k段"""
        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:
                    return False
        return True

    preSum = [0] + list(accumulate(nums + nums))
    left, right = 1, (sum(nums) // k) + 1
    while left <= right:
        mid = (left + right) // 2
        if check(mid):
            left = mid + 1
        else:
            right = mid - 1
    print(right)
0