結果

問題 No.2150 Site Supporter
ユーザー kakel-sankakel-san
提出日時 2023-01-15 20:51:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 899 bytes
コンパイル時間 953 ms
コンパイル使用メモリ 107,392 KB
実行使用メモリ 44,672 KB
最終ジャッジ日時 2024-06-09 08:25:11
合計ジャッジ時間 3,977 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
18,944 KB
testcase_01 AC 28 ms
18,944 KB
testcase_02 AC 28 ms
19,072 KB
testcase_03 AC 30 ms
18,944 KB
testcase_04 AC 30 ms
19,072 KB
testcase_05 AC 29 ms
19,200 KB
testcase_06 AC 28 ms
18,944 KB
testcase_07 AC 29 ms
18,944 KB
testcase_08 AC 43 ms
22,400 KB
testcase_09 AC 114 ms
42,880 KB
testcase_10 AC 68 ms
28,800 KB
testcase_11 AC 104 ms
39,168 KB
testcase_12 AC 56 ms
25,984 KB
testcase_13 AC 47 ms
22,784 KB
testcase_14 AC 30 ms
18,688 KB
testcase_15 AC 29 ms
19,072 KB
testcase_16 AC 29 ms
18,944 KB
testcase_17 AC 119 ms
44,672 KB
testcase_18 AC 60 ms
27,392 KB
testcase_19 AC 38 ms
22,144 KB
testcase_20 AC 88 ms
36,736 KB
testcase_21 AC 39 ms
20,992 KB
testcase_22 AC 108 ms
42,880 KB
testcase_23 AC 29 ms
19,072 KB
testcase_24 AC 30 ms
18,944 KB
testcase_25 AC 29 ms
18,944 KB
testcase_26 AC 29 ms
19,072 KB
testcase_27 AC 86 ms
35,328 KB
testcase_28 AC 83 ms
35,072 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[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k, x) = (c[0], c[1], c[2]);
        var a = NList;
        var dp = new long[2][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = Enumerable.Repeat(long.MaxValue / 2, n + 1).ToArray();
        dp[0][0] = 0;
        for (var i = 0; i < n; ++i)
        {
            dp[0][i + 1] = Math.Min(dp[0][i], dp[1][i]) + a[i];
            dp[1][i + 1] = Math.Min(dp[0][i] + k + x, dp[1][i] + k);
        }
        WriteLine(Math.Min(dp[0][n], dp[1][n]));
    }
}
0