結果

問題 No.2566 美しい整数列
ユーザー kakel-sankakel-san
提出日時 2023-12-02 15:46:09
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 1,253 bytes
コンパイル時間 9,589 ms
コンパイル使用メモリ 166,780 KB
実行使用メモリ 228,004 KB
最終ジャッジ日時 2024-09-26 19:15:11
合計ジャッジ時間 15,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
30,336 KB
testcase_01 AC 54 ms
30,592 KB
testcase_02 AC 57 ms
30,592 KB
testcase_03 AC 54 ms
30,336 KB
testcase_04 AC 331 ms
108,160 KB
testcase_05 AC 230 ms
109,440 KB
testcase_06 AC 175 ms
72,576 KB
testcase_07 AC 185 ms
67,652 KB
testcase_08 AC 174 ms
67,328 KB
testcase_09 AC 172 ms
67,416 KB
testcase_10 AC 172 ms
67,404 KB
testcase_11 AC 178 ms
70,560 KB
testcase_12 AC 177 ms
70,092 KB
testcase_13 AC 184 ms
70,304 KB
testcase_14 AC 186 ms
69,912 KB
testcase_15 AC 185 ms
70,144 KB
testcase_16 AC 185 ms
77,440 KB
testcase_17 AC 181 ms
79,616 KB
testcase_18 AC 182 ms
81,408 KB
testcase_19 AC 145 ms
62,336 KB
testcase_20 AC 175 ms
77,440 KB
testcase_21 AC 172 ms
78,848 KB
testcase_22 AC 143 ms
68,480 KB
testcase_23 AC 159 ms
228,004 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (86 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[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var a = NList;
        var b = NList;
        c = NList;
        var sum = 0L;
        foreach (var ci in c) sum += ci;
        var dic = new Dictionary<long, long>();
        dic[a[0]] = c[0];
        var sub = 0L;
        for (var i = 1; i < n; ++i)
        {
            sub += b[(i - 1) % m];
            var ta1 = a[i] - sub;
            if (dic.ContainsKey(ta1)) dic[ta1] += c[i];
            else dic[ta1] = c[i];
        }
        var ans = long.MaxValue;
        foreach (var kv in dic) ans = Math.Min(ans, sum - kv.Value);
        WriteLine(ans);
    }
}
0