結果

問題 No.2217 Suffix+
ユーザー kakel-sankakel-san
提出日時 2023-08-26 19:44:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 881 ms
コンパイル使用メモリ 115,068 KB
実行使用メモリ 43,876 KB
最終ジャッジ日時 2024-06-07 15:16:37
合計ジャッジ時間 6,029 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,996 KB
testcase_01 AC 29 ms
25,096 KB
testcase_02 AC 28 ms
24,956 KB
testcase_03 AC 29 ms
26,884 KB
testcase_04 AC 29 ms
24,964 KB
testcase_05 AC 29 ms
24,992 KB
testcase_06 AC 29 ms
26,904 KB
testcase_07 AC 29 ms
24,732 KB
testcase_08 AC 29 ms
24,988 KB
testcase_09 AC 29 ms
26,996 KB
testcase_10 AC 29 ms
24,864 KB
testcase_11 AC 29 ms
26,992 KB
testcase_12 AC 28 ms
24,864 KB
testcase_13 AC 28 ms
25,120 KB
testcase_14 AC 46 ms
26,588 KB
testcase_15 AC 46 ms
27,312 KB
testcase_16 AC 62 ms
30,264 KB
testcase_17 AC 54 ms
26,296 KB
testcase_18 AC 51 ms
28,676 KB
testcase_19 AC 109 ms
30,064 KB
testcase_20 AC 104 ms
31,552 KB
testcase_21 AC 51 ms
28,064 KB
testcase_22 AC 113 ms
31,848 KB
testcase_23 AC 97 ms
28,136 KB
testcase_24 AC 103 ms
39,644 KB
testcase_25 AC 102 ms
41,712 KB
testcase_26 AC 103 ms
39,796 KB
testcase_27 AC 104 ms
41,972 KB
testcase_28 AC 104 ms
43,876 KB
testcase_29 AC 155 ms
41,708 KB
testcase_30 AC 157 ms
41,824 KB
testcase_31 AC 157 ms
41,836 KB
testcase_32 AC 154 ms
41,700 KB
testcase_33 AC 156 ms
43,872 KB
testcase_34 AC 106 ms
42,004 KB
testcase_35 AC 29 ms
24,952 KB
testcase_36 AC 180 ms
41,876 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        var a = NList;
        var ok = 0L;
        var ng = 1_000_000_000_000_000;
        while (ng - ok > 1)
        {
            var mid = (ok + ng) / 2;
            var cnt = 0L;
            var add = 0L;
            for (var i = 0; i < n; ++i)
            {
                if (a[i] + add < mid)
                {
                    var sub = (mid - add - a[i] + i) / (i + 1);
                    cnt += sub;
                    add += sub * (i + 1);
                }
            }
            if (cnt > k) ng = mid;
            else ok = mid;
        }
        WriteLine(ok);
    }
}
0