結果

問題 No.2217 Suffix+
ユーザー maguroflymagurofly
提出日時 2023-02-17 21:46:54
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,429 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-07-19 12:58:11
合計ジャッジ時間 20,446 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,032 KB
testcase_01 AC 84 ms
12,288 KB
testcase_02 AC 84 ms
12,288 KB
testcase_03 AC 85 ms
12,288 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 85 ms
12,288 KB
testcase_07 AC 86 ms
12,288 KB
testcase_08 AC 88 ms
12,032 KB
testcase_09 AC 83 ms
11,904 KB
testcase_10 AC 86 ms
12,160 KB
testcase_11 AC 85 ms
12,288 KB
testcase_12 AC 84 ms
12,032 KB
testcase_13 AC 85 ms
12,032 KB
testcase_14 AC 250 ms
14,464 KB
testcase_15 AC 248 ms
14,208 KB
testcase_16 AC 425 ms
15,616 KB
testcase_17 AC 337 ms
15,360 KB
testcase_18 AC 293 ms
14,720 KB
testcase_19 AC 840 ms
19,584 KB
testcase_20 AC 772 ms
18,176 KB
testcase_21 AC 213 ms
12,672 KB
testcase_22 AC 807 ms
18,176 KB
testcase_23 AC 684 ms
15,616 KB
testcase_24 AC 711 ms
22,656 KB
testcase_25 AC 725 ms
22,784 KB
testcase_26 AC 719 ms
22,912 KB
testcase_27 AC 728 ms
22,784 KB
testcase_28 AC 726 ms
22,656 KB
testcase_29 AC 1,338 ms
22,784 KB
testcase_30 AC 1,338 ms
22,656 KB
testcase_31 AC 1,316 ms
22,656 KB
testcase_32 AC 1,330 ms
22,656 KB
testcase_33 AC 1,308 ms
22,656 KB
testcase_34 AC 721 ms
22,784 KB
testcase_35 AC 84 ms
11,904 KB
testcase_36 AC 1,429 ms
22,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)

ac = 0
wa = 10**20
while wa - ac > 1
    wj = (ac + wa) >> 1
    
    add = 0
    count = 0
    N.times do |i|
        if A[i] + add < wj
            c = (wj - (A[i] + add) + i) / (i + 1)
            count += c
            add += c * (i + 1)
        end
    end
    
    if count <= K
        ac = wj
    else
        wa = wj
    end
end

puts ac
0