結果

問題 No.1211 円環はお断り
ユーザー titiatitia
提出日時 2020-08-30 17:38:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 861 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,344 KB
最終ジャッジ日時 2024-05-02 21:39:56
合計ジャッジ時間 16,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 47 ms
59,392 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 50 ms
61,824 KB
testcase_10 AC 51 ms
61,312 KB
testcase_11 AC 50 ms
61,312 KB
testcase_12 AC 43 ms
57,856 KB
testcase_13 AC 351 ms
89,216 KB
testcase_14 AC 606 ms
94,976 KB
testcase_15 AC 410 ms
95,232 KB
testcase_16 AC 695 ms
104,960 KB
testcase_17 AC 118 ms
76,560 KB
testcase_18 AC 410 ms
92,528 KB
testcase_19 AC 158 ms
76,656 KB
testcase_20 AC 149 ms
77,052 KB
testcase_21 AC 128 ms
77,340 KB
testcase_22 AC 499 ms
90,368 KB
testcase_23 AC 593 ms
92,416 KB
testcase_24 AC 320 ms
84,224 KB
testcase_25 AC 88 ms
76,416 KB
testcase_26 AC 470 ms
96,784 KB
testcase_27 AC 322 ms
84,096 KB
testcase_28 AC 664 ms
96,512 KB
testcase_29 AC 432 ms
92,672 KB
testcase_30 AC 584 ms
98,176 KB
testcase_31 AC 243 ms
82,816 KB
testcase_32 AC 743 ms
101,504 KB
testcase_33 AC 807 ms
105,236 KB
testcase_34 AC 834 ms
105,000 KB
testcase_35 AC 809 ms
104,960 KB
testcase_36 AC 842 ms
104,832 KB
testcase_37 AC 812 ms
105,076 KB
testcase_38 AC 861 ms
104,832 KB
testcase_39 AC 858 ms
105,344 KB
testcase_40 AC 82 ms
99,712 KB
testcase_41 AC 42 ms
52,352 KB
testcase_42 AC 39 ms
52,096 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