結果

問題 No.1391 ±1 Abs Sum
ユーザー kakel-sankakel-san
提出日時 2024-07-23 00:15:48
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,518 bytes
コンパイル時間 11,163 ms
コンパイル使用メモリ 168,420 KB
実行使用メモリ 221,852 KB
最終ジャッジ日時 2024-07-23 00:16:12
合計ジャッジ時間 16,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,336 KB
testcase_01 AC 58 ms
30,312 KB
testcase_02 AC 57 ms
30,336 KB
testcase_03 AC 56 ms
30,064 KB
testcase_04 AC 56 ms
30,080 KB
testcase_05 AC 56 ms
30,208 KB
testcase_06 AC 57 ms
30,208 KB
testcase_07 AC 56 ms
30,464 KB
testcase_08 AC 58 ms
29,952 KB
testcase_09 AC 59 ms
30,080 KB
testcase_10 AC 57 ms
29,948 KB
testcase_11 AC 100 ms
57,600 KB
testcase_12 AC 91 ms
52,472 KB
testcase_13 AC 98 ms
55,680 KB
testcase_14 AC 84 ms
47,744 KB
testcase_15 AC 84 ms
48,496 KB
testcase_16 AC 92 ms
52,224 KB
testcase_17 AC 88 ms
50,152 KB
testcase_18 AC 98 ms
55,552 KB
testcase_19 AC 89 ms
50,280 KB
testcase_20 AC 100 ms
57,020 KB
testcase_21 AC 89 ms
50,924 KB
testcase_22 AC 90 ms
50,688 KB
testcase_23 AC 94 ms
53,104 KB
testcase_24 AC 92 ms
51,880 KB
testcase_25 AC 91 ms
52,048 KB
testcase_26 AC 91 ms
52,952 KB
testcase_27 AC 83 ms
44,784 KB
testcase_28 AC 83 ms
45,168 KB
testcase_29 AC 89 ms
51,440 KB
testcase_30 AC 85 ms
47,104 KB
testcase_31 AC 100 ms
57,576 KB
testcase_32 AC 83 ms
47,088 KB
testcase_33 AC 84 ms
48,060 KB
testcase_34 WA -
testcase_35 AC 57 ms
29,824 KB
testcase_36 AC 105 ms
221,852 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    static int[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => int.Parse(ReadLine())).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        var a = NList;
        var cum = new long[n + 1];
        for (var i = 0; i < n; ++i) cum[i + 1] = cum[i] + a[i];
        var ans = long.MaxValue;
        if (k == 0)
        {
            ans = Math.Min(a[0] * (long)n - cum[n], cum[n] - a[^1] * (long)n);
        }
        else if (k == n)
        {
            ans = a[n / 2] * (long)n / 2 - cum[n / 2] + cum[n] - cum[n / 2] - a[n / 2] * (long)(n - n / 2);
        }
        else
        {
            var pos = (2 * k - n - 1) / 2;
            for (var i = 0L; i <= n - k; ++i)
            {
                var x = Math.Max(0L, Math.Min(n - 1, pos));
                ans = Math.Min(ans, cum[i] - a[x] * i + a[x] * (x - i) - (cum[x] - cum[i])
                    + cum[k + i] - cum[x] - a[x] * (k + i - x) + a[x] * (n - k - i) - cum[n] + cum[k + i]);
                pos += 2;
            }
        }
        WriteLine(ans);
    }
}
0