結果

問題 No.1211 円環はお断り
ユーザー titiatitia
提出日時 2020-08-30 17:33:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 604 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 210,768 KB
最終ジャッジ日時 2024-11-15 13:57:04
合計ジャッジ時間 60,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,724 KB
testcase_01 AC 39 ms
53,780 KB
testcase_02 AC 39 ms
59,108 KB
testcase_03 AC 39 ms
165,080 KB
testcase_04 AC 40 ms
59,492 KB
testcase_05 AC 39 ms
147,460 KB
testcase_06 AC 39 ms
59,232 KB
testcase_07 AC 51 ms
162,972 KB
testcase_08 AC 39 ms
59,792 KB
testcase_09 AC 64 ms
163,056 KB
testcase_10 AC 51 ms
71,728 KB
testcase_11 AC 65 ms
83,280 KB
testcase_12 AC 55 ms
71,952 KB
testcase_13 TLE -
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 234 ms
83,980 KB
testcase_18 AC 1,914 ms
104,048 KB
testcase_19 AC 734 ms
84,088 KB
testcase_20 AC 269 ms
85,228 KB
testcase_21 AC 786 ms
85,724 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 154 ms
76,196 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 844 ms
112,448 KB
testcase_39 AC 850 ms
112,348 KB
testcase_40 AC 89 ms
107,516 KB
testcase_41 AC 40 ms
52,312 KB
testcase_42 AC 44 ms
170,176 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*3
SUM=[0]
for a in B:
    SUM.append(SUM[-1]+a)

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

    flag=0
    for start in range(min(N//K+20,N%K+20)):
        if start>N:
            break
        G=0
        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