結果

問題 No.2701 A cans -> B cans
ユーザー kakel-sankakel-san
提出日時 2024-03-29 22:17:25
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,094 bytes
コンパイル時間 9,470 ms
コンパイル使用メモリ 167,976 KB
実行使用メモリ 217,276 KB
最終ジャッジ日時 2024-09-30 16:07:07
合計ジャッジ時間 21,854 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
30,848 KB
testcase_01 AC 64 ms
30,836 KB
testcase_02 AC 63 ms
30,972 KB
testcase_03 AC 63 ms
31,232 KB
testcase_04 AC 62 ms
31,104 KB
testcase_05 AC 60 ms
31,360 KB
testcase_06 AC 64 ms
31,872 KB
testcase_07 AC 63 ms
32,000 KB
testcase_08 AC 65 ms
31,872 KB
testcase_09 AC 66 ms
31,488 KB
testcase_10 AC 63 ms
32,000 KB
testcase_11 AC 64 ms
32,128 KB
testcase_12 AC 65 ms
31,604 KB
testcase_13 AC 67 ms
31,744 KB
testcase_14 AC 66 ms
31,612 KB
testcase_15 AC 66 ms
31,720 KB
testcase_16 AC 64 ms
31,612 KB
testcase_17 AC 64 ms
31,744 KB
testcase_18 AC 66 ms
31,476 KB
testcase_19 AC 65 ms
31,488 KB
testcase_20 AC 65 ms
31,744 KB
testcase_21 AC 66 ms
31,872 KB
testcase_22 AC 65 ms
31,488 KB
testcase_23 AC 66 ms
31,744 KB
testcase_24 AC 66 ms
31,744 KB
testcase_25 AC 65 ms
31,744 KB
testcase_26 AC 116 ms
55,680 KB
testcase_27 AC 114 ms
55,936 KB
testcase_28 AC 115 ms
55,936 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var map = NArr(n);
        var dp = Enumerable.Repeat(long.MinValue, m + 1).ToArray();
        dp[0] = 0;
        for (var i = 0; i < n; ++i)
        {
            var ndp = (long[]) dp.Clone();
            for (var j = 0; j + map[i][0] <= m; ++j)
            {
                ndp[j + map[i][0]] = Math.Max(ndp[j + map[i][0]], Math.Max(ndp[j + map[i][1]], dp[j]) + (long)map[i][1] * map[i][2]);
            }
            dp = ndp;
        }
        for (var i = 1; i < dp.Length; ++i) dp[i] = Math.Max(dp[i], dp[i - 1]);
        WriteLine(string.Join("\n", dp.Skip(1)));
    }
}
0