結果

問題 No.1211 円環はお断り
ユーザー titiatitia
提出日時 2020-08-30 17:30:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 564 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,384 KB
最終ジャッジ日時 2024-11-15 13:46:31
合計ジャッジ時間 16,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 44 ms
59,264 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 47 ms
62,208 KB
testcase_10 WA -
testcase_11 AC 46 ms
62,080 KB
testcase_12 AC 42 ms
57,728 KB
testcase_13 AC 479 ms
94,208 KB
testcase_14 WA -
testcase_15 AC 468 ms
100,224 KB
testcase_16 AC 847 ms
112,000 KB
testcase_17 AC 104 ms
77,184 KB
testcase_18 AC 435 ms
97,012 KB
testcase_19 AC 144 ms
77,056 KB
testcase_20 AC 128 ms
77,824 KB
testcase_21 AC 151 ms
77,952 KB
testcase_22 AC 440 ms
94,336 KB
testcase_23 AC 573 ms
97,072 KB
testcase_24 AC 448 ms
87,680 KB
testcase_25 AC 77 ms
76,516 KB
testcase_26 AC 576 ms
103,280 KB
testcase_27 AC 401 ms
87,424 KB
testcase_28 AC 610 ms
103,296 KB
testcase_29 AC 549 ms
97,088 KB
testcase_30 AC 749 ms
103,808 KB
testcase_31 AC 318 ms
85,632 KB
testcase_32 AC 937 ms
109,824 KB
testcase_33 AC 737 ms
112,128 KB
testcase_34 AC 798 ms
112,000 KB
testcase_35 AC 773 ms
112,128 KB
testcase_36 AC 746 ms
112,256 KB
testcase_37 AC 705 ms
112,384 KB
testcase_38 AC 771 ms
112,128 KB
testcase_39 AC 759 ms
112,256 KB
testcase_40 AC 80 ms
106,752 KB
testcase_41 AC 36 ms
52,480 KB
testcase_42 AC 36 ms
52,480 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+1,N%K+1)):
        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