結果

問題 No.2217 Suffix+
ユーザー 310icecrystal310icecrystal
提出日時 2023-06-09 20:51:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 425 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 93,092 KB
最終ジャッジ日時 2024-06-10 12:25:35
合計ジャッジ時間 24,166 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,660 KB
testcase_01 AC 41 ms
51,884 KB
testcase_02 AC 39 ms
52,676 KB
testcase_03 AC 39 ms
52,200 KB
testcase_04 AC 41 ms
52,888 KB
testcase_05 AC 39 ms
53,076 KB
testcase_06 AC 39 ms
52,996 KB
testcase_07 AC 38 ms
53,332 KB
testcase_08 AC 38 ms
53,804 KB
testcase_09 AC 39 ms
52,824 KB
testcase_10 AC 40 ms
53,060 KB
testcase_11 AC 39 ms
52,428 KB
testcase_12 AC 40 ms
53,228 KB
testcase_13 AC 39 ms
52,864 KB
testcase_14 AC 161 ms
78,452 KB
testcase_15 AC 161 ms
78,232 KB
testcase_16 AC 277 ms
82,760 KB
testcase_17 AC 214 ms
80,536 KB
testcase_18 AC 185 ms
79,292 KB
testcase_19 AC 1,018 ms
87,356 KB
testcase_20 AC 982 ms
85,928 KB
testcase_21 AC 294 ms
76,004 KB
testcase_22 AC 1,000 ms
87,108 KB
testcase_23 AC 924 ms
83,304 KB
testcase_24 AC 458 ms
92,500 KB
testcase_25 AC 465 ms
92,440 KB
testcase_26 AC 462 ms
92,712 KB
testcase_27 AC 456 ms
92,600 KB
testcase_28 AC 460 ms
92,372 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 478 ms
92,988 KB
testcase_35 AC 38 ms
53,748 KB
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = [-1] + list(map(int,input().split()))

OK = 0
NG = 10**30
while NG - OK >= 2:
    MID = (OK + NG) // 2
    count = 0
    now_plus = 0
    for i in range(1,N+1):
        if A[i] + now_plus < MID:
            k = -(-(MID - A[i] - now_plus) // i)
            count += k
            now_plus += i * k
    #print(MID,count)
    if count > K:
        NG = MID
    else:
        OK = MID
print(OK)
0