結果

問題 No.2217 Suffix+
ユーザー kohakoha11301kohakoha11301
提出日時 2023-02-26 17:32:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 92,672 KB
最終ジャッジ日時 2024-09-14 07:26:02
合計ジャッジ時間 6,879 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 41 ms
51,840 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 41 ms
52,224 KB
testcase_14 AC 62 ms
67,328 KB
testcase_15 AC 63 ms
67,456 KB
testcase_16 AC 71 ms
73,216 KB
testcase_17 AC 69 ms
70,528 KB
testcase_18 AC 66 ms
69,504 KB
testcase_19 AC 199 ms
82,816 KB
testcase_20 AC 197 ms
80,128 KB
testcase_21 AC 89 ms
65,280 KB
testcase_22 AC 198 ms
82,304 KB
testcase_23 AC 184 ms
77,056 KB
testcase_24 AC 97 ms
88,448 KB
testcase_25 AC 93 ms
87,296 KB
testcase_26 AC 95 ms
87,936 KB
testcase_27 AC 96 ms
87,808 KB
testcase_28 AC 98 ms
88,576 KB
testcase_29 AC 321 ms
92,160 KB
testcase_30 AC 322 ms
92,288 KB
testcase_31 AC 317 ms
92,160 KB
testcase_32 AC 321 ms
92,544 KB
testcase_33 AC 321 ms
92,416 KB
testcase_34 AC 94 ms
87,296 KB
testcase_35 AC 41 ms
51,840 KB
testcase_36 AC 403 ms
92,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


def judge(mid):
    cnt = 0
    nokori = k
    for i in range(n):
        if mid > a[i] + cnt:
            # print(cnt,(mid - a[i] - cnt))
            nokori -= math.ceil((mid - a[i] - cnt) / (i + 1))
            cnt += (i + 1) * math.ceil((mid - a[i] - cnt) / (i + 1))
    if nokori < 0:
        return False
    else:
        return True


n, k = map(int, input().split())
a = list(map(int, input().split()))
ok = 0
ng = 10 ** 18
while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if judge(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0