結果

問題 No.1645 AB's abs
ユーザー tentententen
提出日時 2021-08-16 14:58:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,536 bytes
コンパイル時間 2,610 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 54,680 KB
最終ジャッジ日時 2024-10-09 11:54:11
合計ジャッジ時間 7,263 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,132 KB
testcase_01 AC 48 ms
36,944 KB
testcase_02 AC 69 ms
38,412 KB
testcase_03 AC 52 ms
36,876 KB
testcase_04 AC 50 ms
36,996 KB
testcase_05 AC 49 ms
36,940 KB
testcase_06 AC 50 ms
37,264 KB
testcase_07 AC 50 ms
37,004 KB
testcase_08 AC 73 ms
39,944 KB
testcase_09 AC 72 ms
39,856 KB
testcase_10 AC 62 ms
39,492 KB
testcase_11 AC 62 ms
39,376 KB
testcase_12 AC 69 ms
39,308 KB
testcase_13 AC 93 ms
53,868 KB
testcase_14 AC 93 ms
53,476 KB
testcase_15 AC 92 ms
53,916 KB
testcase_16 AC 93 ms
53,644 KB
testcase_17 AC 96 ms
53,896 KB
testcase_18 AC 93 ms
53,500 KB
testcase_19 AC 91 ms
53,920 KB
testcase_20 AC 92 ms
53,780 KB
testcase_21 AC 94 ms
53,620 KB
testcase_22 AC 90 ms
53,784 KB
testcase_23 AC 92 ms
54,596 KB
testcase_24 AC 93 ms
54,496 KB
testcase_25 AC 92 ms
54,504 KB
testcase_26 AC 93 ms
54,516 KB
testcase_27 AC 93 ms
54,476 KB
testcase_28 AC 93 ms
54,496 KB
testcase_29 AC 93 ms
54,680 KB
testcase_30 AC 93 ms
54,340 KB
testcase_31 AC 103 ms
54,448 KB
testcase_32 AC 92 ms
54,440 KB
testcase_33 AC 94 ms
54,480 KB
testcase_34 AC 94 ms
54,380 KB
testcase_35 AC 94 ms
54,500 KB
testcase_36 AC 94 ms
54,488 KB
testcase_37 AC 93 ms
54,372 KB
testcase_38 AC 93 ms
54,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int base = n * 100;
        long[][] dp = new long[n + 1][base * 2 + 1];
        dp[0][base] = 1;
        for (int i = 1; i <= n; i++) {
            int x = sc.nextInt();
            for (int j = 0; j < dp[i].length; j++) {
                if (dp[i - 1][j] > 0) {
                    dp[i][j + x] += dp[i - 1][j];
                    dp[i][j + x] %= MOD;
                    dp[i][j - x] += dp[i - 1][j];
                    dp[i][j + x] %= MOD;
                }
            }
        }
        long ans = 0;
        for (int i = 0; i < dp[n].length; i++) {
            long value = Math.abs(i - base);
            ans += value * dp[n][i] % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0