結果

問題 No.1211 円環はお断り
ユーザー titiatitia
提出日時 2020-08-30 17:34:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 165,892 KB
最終ジャッジ日時 2024-11-15 13:59:38
合計ジャッジ時間 37,592 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,308 KB
testcase_01 AC 40 ms
165,892 KB
testcase_02 AC 40 ms
59,436 KB
testcase_03 AC 42 ms
165,608 KB
testcase_04 AC 41 ms
59,700 KB
testcase_05 AC 41 ms
52,796 KB
testcase_06 AC 40 ms
52,476 KB
testcase_07 AC 53 ms
63,912 KB
testcase_08 AC 41 ms
53,988 KB
testcase_09 AC 55 ms
65,236 KB
testcase_10 AC 52 ms
63,056 KB
testcase_11 AC 54 ms
64,972 KB
testcase_12 AC 48 ms
59,728 KB
testcase_13 AC 1,098 ms
94,264 KB
testcase_14 WA -
testcase_15 AC 832 ms
100,540 KB
testcase_16 AC 1,868 ms
112,004 KB
testcase_17 AC 137 ms
77,288 KB
testcase_18 AC 788 ms
97,164 KB
testcase_19 AC 277 ms
77,160 KB
testcase_20 AC 165 ms
77,848 KB
testcase_21 AC 288 ms
78,184 KB
testcase_22 AC 1,023 ms
94,576 KB
testcase_23 AC 1,245 ms
97,340 KB
testcase_24 AC 1,042 ms
87,532 KB
testcase_25 AC 98 ms
76,696 KB
testcase_26 AC 1,083 ms
103,644 KB
testcase_27 AC 932 ms
87,536 KB
testcase_28 AC 1,052 ms
103,632 KB
testcase_29 AC 1,231 ms
97,100 KB
testcase_30 AC 1,693 ms
104,004 KB
testcase_31 AC 707 ms
85,680 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 853 ms
112,464 KB
testcase_39 AC 848 ms
112,432 KB
testcase_40 AC 87 ms
107,228 KB
testcase_41 AC 41 ms
52,476 KB
testcase_42 AC 41 ms
165,672 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+5,N%K+5)):
        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