結果

問題 No.1211 円環はお断り
ユーザー titiatitia
提出日時 2020-08-30 17:32:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 606 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 181,632 KB
最終ジャッジ日時 2024-11-15 13:52:29
合計ジャッジ時間 69,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,584 KB
testcase_01 AC 40 ms
147,268 KB
testcase_02 AC 40 ms
60,776 KB
testcase_03 AC 39 ms
153,076 KB
testcase_04 AC 44 ms
59,144 KB
testcase_05 AC 38 ms
164,356 KB
testcase_06 AC 37 ms
59,572 KB
testcase_07 AC 63 ms
171,248 KB
testcase_08 AC 37 ms
59,816 KB
testcase_09 AC 79 ms
154,420 KB
testcase_10 AC 60 ms
79,428 KB
testcase_11 AC 78 ms
154,360 KB
testcase_12 AC 53 ms
71,320 KB
testcase_13 TLE -
testcase_14 AC 571 ms
107,036 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 701 ms
164,780 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 747 ms
84,816 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 421 ms
162,032 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 792 ms
112,056 KB
testcase_39 AC 791 ms
112,184 KB
testcase_40 AC 83 ms
106,900 KB
testcase_41 AC 38 ms
52,400 KB
testcase_42 AC 42 ms
170,748 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+100,N%K+100)):
        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