結果

問題 No.2217 Suffix+
ユーザー H20H20
提出日時 2023-02-17 21:57:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-07-19 13:09:52
合計ジャッジ時間 4,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 34 ms
51,456 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 35 ms
51,328 KB
testcase_06 AC 33 ms
51,712 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 34 ms
51,840 KB
testcase_11 AC 34 ms
51,328 KB
testcase_12 AC 34 ms
51,584 KB
testcase_13 AC 35 ms
51,840 KB
testcase_14 AC 51 ms
65,536 KB
testcase_15 AC 57 ms
64,896 KB
testcase_16 AC 64 ms
72,448 KB
testcase_17 AC 59 ms
68,352 KB
testcase_18 AC 56 ms
66,816 KB
testcase_19 AC 134 ms
78,336 KB
testcase_20 AC 123 ms
76,288 KB
testcase_21 AC 58 ms
61,188 KB
testcase_22 AC 141 ms
77,952 KB
testcase_23 AC 117 ms
72,704 KB
testcase_24 AC 90 ms
86,528 KB
testcase_25 AC 86 ms
86,400 KB
testcase_26 AC 88 ms
86,144 KB
testcase_27 AC 87 ms
86,272 KB
testcase_28 AC 86 ms
85,760 KB
testcase_29 AC 173 ms
91,236 KB
testcase_30 AC 173 ms
91,264 KB
testcase_31 AC 172 ms
91,212 KB
testcase_32 AC 178 ms
91,520 KB
testcase_33 AC 174 ms
91,520 KB
testcase_34 AC 85 ms
85,888 KB
testcase_35 AC 37 ms
51,584 KB
testcase_36 AC 185 ms
91,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_ok(V):
    cnt = 0
    add = 0
    for i,a in enumerate(A,start=1):
        if add+a<V:
            temp = -(-(V-a-add)//i)
            add+=temp*i
            cnt+=temp
    return cnt<=K

def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok




N,K = map(int, input().split())
A = list(map(int, input().split())) 

print(meguru_bisect(10**18,0))
0