結果

問題 No.2548 Problem Selection
ユーザー bluemeganebluemegane
提出日時 2023-11-25 20:08:21
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 16,456 ms
コンパイル使用メモリ 168,640 KB
実行使用メモリ 184,472 KB
最終ジャッジ日時 2024-09-26 11:11:59
合計ジャッジ時間 14,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,960 KB
testcase_01 AC 74 ms
32,896 KB
testcase_02 AC 110 ms
43,648 KB
testcase_03 AC 66 ms
31,096 KB
testcase_04 AC 93 ms
38,912 KB
testcase_05 AC 115 ms
43,776 KB
testcase_06 AC 73 ms
31,104 KB
testcase_07 AC 102 ms
40,832 KB
testcase_08 AC 103 ms
41,728 KB
testcase_09 AC 107 ms
42,368 KB
testcase_10 AC 115 ms
44,288 KB
testcase_11 AC 113 ms
43,904 KB
testcase_12 AC 112 ms
44,160 KB
testcase_13 AC 55 ms
29,440 KB
testcase_14 AC 54 ms
28,800 KB
testcase_15 AC 57 ms
29,300 KB
testcase_16 AC 57 ms
28,800 KB
testcase_17 AC 57 ms
28,928 KB
testcase_18 AC 56 ms
28,800 KB
testcase_19 AC 57 ms
29,440 KB
testcase_20 AC 55 ms
28,928 KB
testcase_21 AC 54 ms
28,800 KB
testcase_22 AC 55 ms
29,312 KB
testcase_23 AC 55 ms
28,928 KB
testcase_24 AC 56 ms
28,920 KB
testcase_25 AC 56 ms
28,928 KB
testcase_26 AC 54 ms
184,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (106 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 static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var k = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, long.Parse);
        getAns(n, k, a);
    }
    static void getAns(int n, int k, long[] a)
    {
        Array.Sort(a);
        var b = new long[n - 1];
        for (int i = 0; i < n - 1; i++)
        {
            var t = a[i + 1] - a[i];
            b[i] = t * t;
        }
        var s = 0L;
        for (int i = 0; i < k - 1; i++) s += b[i];
        var c = new long[n];
        c[0] = 0;
        for (int i = 1; i < n; i++) c[i] = c[i - 1] + b[i - 1];
        var ans = long.MaxValue;
        for (int i = k - 1; i < n; i++) ans = Min(ans, c[i] - c[i - k + 1]);
        Console.WriteLine(ans);
    }
}
0