結果

問題 No.1211 円環はお断り
ユーザー Ameesh SethiAmeesh Sethi
提出日時 2024-07-13 19:59:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 878 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 105,268 KB
最終ジャッジ日時 2024-07-13 19:59:34
合計ジャッジ時間 17,609 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,380 KB
testcase_01 AC 45 ms
53,092 KB
testcase_02 AC 39 ms
52,192 KB
testcase_03 AC 41 ms
52,392 KB
testcase_04 AC 39 ms
52,872 KB
testcase_05 AC 39 ms
53,732 KB
testcase_06 AC 40 ms
53,656 KB
testcase_07 AC 46 ms
59,844 KB
testcase_08 AC 39 ms
52,400 KB
testcase_09 AC 48 ms
61,792 KB
testcase_10 AC 49 ms
62,100 KB
testcase_11 AC 50 ms
61,616 KB
testcase_12 AC 43 ms
58,380 KB
testcase_13 AC 350 ms
89,456 KB
testcase_14 AC 639 ms
95,184 KB
testcase_15 AC 411 ms
95,120 KB
testcase_16 AC 719 ms
104,920 KB
testcase_17 AC 114 ms
76,712 KB
testcase_18 AC 411 ms
92,456 KB
testcase_19 AC 158 ms
76,576 KB
testcase_20 AC 147 ms
77,132 KB
testcase_21 AC 127 ms
77,212 KB
testcase_22 AC 523 ms
90,784 KB
testcase_23 AC 586 ms
92,784 KB
testcase_24 AC 320 ms
84,464 KB
testcase_25 AC 89 ms
76,268 KB
testcase_26 AC 481 ms
96,660 KB
testcase_27 AC 314 ms
84,376 KB
testcase_28 AC 653 ms
96,608 KB
testcase_29 AC 443 ms
92,428 KB
testcase_30 AC 574 ms
97,976 KB
testcase_31 AC 243 ms
83,024 KB
testcase_32 AC 728 ms
101,532 KB
testcase_33 AC 839 ms
105,224 KB
testcase_34 AC 822 ms
104,944 KB
testcase_35 AC 825 ms
104,880 KB
testcase_36 AC 828 ms
105,268 KB
testcase_37 AC 800 ms
105,048 KB
testcase_38 AC 878 ms
104,808 KB
testcase_39 AC 860 ms
105,252 KB
testcase_40 AC 79 ms
100,528 KB
testcase_41 AC 39 ms
52,944 KB
testcase_42 AC 39 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import bisect

N,K=map(int,input().split())
A=list(map(int,input().split()))

OK=0
NG=sum(A)//K+1
B=A*2
SUM=[0]
for a in B:
    SUM.append(SUM[-1]+a)

while NG-OK>1:
    mid=(OK+NG)//2

    flag=0
    MAX=bisect.bisect_right(SUM,mid)
    for start in range(MAX):
        if start>N:
            break
        now=start

        for j in range(K):
            now=bisect.bisect_left(SUM,SUM[now]+mid)
            if now>start+N:
                break
        if now<=start+N:
            flag=1
            break

    if flag:
        OK=mid
    else:
        NG=mid
print(OK)
0