結果

問題 No.1645 AB's abs
ユーザー kakel-sankakel-san
提出日時 2024-01-21 20:35:39
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 1,004 bytes
コンパイル時間 10,785 ms
コンパイル使用メモリ 167,096 KB
実行使用メモリ 188,100 KB
最終ジャッジ日時 2024-09-28 06:15:29
合計ジャッジ時間 15,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
31,360 KB
testcase_01 AC 63 ms
31,348 KB
testcase_02 AC 81 ms
34,560 KB
testcase_03 AC 64 ms
31,360 KB
testcase_04 AC 65 ms
31,744 KB
testcase_05 AC 64 ms
32,000 KB
testcase_06 AC 69 ms
32,512 KB
testcase_07 AC 65 ms
31,744 KB
testcase_08 AC 86 ms
35,072 KB
testcase_09 AC 84 ms
34,680 KB
testcase_10 AC 82 ms
34,560 KB
testcase_11 AC 83 ms
34,688 KB
testcase_12 AC 84 ms
34,688 KB
testcase_13 AC 111 ms
34,808 KB
testcase_14 AC 109 ms
35,072 KB
testcase_15 AC 113 ms
34,816 KB
testcase_16 AC 113 ms
34,944 KB
testcase_17 AC 115 ms
34,816 KB
testcase_18 AC 112 ms
34,688 KB
testcase_19 AC 112 ms
34,944 KB
testcase_20 AC 109 ms
34,944 KB
testcase_21 AC 112 ms
34,688 KB
testcase_22 AC 112 ms
34,688 KB
testcase_23 AC 115 ms
34,944 KB
testcase_24 AC 113 ms
34,816 KB
testcase_25 AC 113 ms
34,816 KB
testcase_26 AC 115 ms
34,816 KB
testcase_27 AC 117 ms
34,944 KB
testcase_28 AC 114 ms
34,688 KB
testcase_29 AC 120 ms
34,816 KB
testcase_30 AC 117 ms
34,944 KB
testcase_31 AC 111 ms
34,688 KB
testcase_32 AC 113 ms
34,816 KB
testcase_33 AC 116 ms
34,648 KB
testcase_34 AC 115 ms
34,688 KB
testcase_35 AC 112 ms
34,808 KB
testcase_36 AC 115 ms
34,816 KB
testcase_37 AC 117 ms
34,808 KB
testcase_38 AC 116 ms
188,100 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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var mod = 998_244_353;
        var dp = new long[20001];
        dp[10000] = 1;
        for (var i = 0; i < n; ++i)
        {
            var ndp = new long[20001];
            for (var j = 0; j < dp.Length; ++j)
            {
                if (j - a[i] >= 0) ndp[j - a[i]] = (ndp[j - a[i]] + dp[j]) % mod;
                if (j + a[i] < ndp.Length) ndp[j + a[i]] = (ndp[j + a[i]] + dp[j]) % mod;
            }
            dp = ndp;
        }
        var ans = 0L;
        for (var i = 0; i < dp.Length; ++i) ans = (ans + Math.Abs(i - 10000) * dp[i] % mod) % mod;
        WriteLine(ans);
    }
}
0