結果

問題 No.1645 AB's abs
ユーザー tentententen
提出日時 2023-02-22 10:38:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 2,154 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 88,820 KB
実行使用メモリ 50,208 KB
最終ジャッジ日時 2024-07-22 13:30:33
合計ジャッジ時間 6,747 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,868 KB
testcase_01 AC 47 ms
37,064 KB
testcase_02 AC 50 ms
37,736 KB
testcase_03 AC 46 ms
36,524 KB
testcase_04 AC 45 ms
37,016 KB
testcase_05 AC 44 ms
36,520 KB
testcase_06 AC 44 ms
36,940 KB
testcase_07 AC 46 ms
36,700 KB
testcase_08 AC 51 ms
38,188 KB
testcase_09 AC 53 ms
38,476 KB
testcase_10 AC 51 ms
37,372 KB
testcase_11 AC 50 ms
37,916 KB
testcase_12 AC 51 ms
37,816 KB
testcase_13 AC 91 ms
49,764 KB
testcase_14 AC 81 ms
45,520 KB
testcase_15 AC 85 ms
49,824 KB
testcase_16 AC 85 ms
45,672 KB
testcase_17 AC 88 ms
49,708 KB
testcase_18 AC 86 ms
45,644 KB
testcase_19 AC 89 ms
49,868 KB
testcase_20 AC 84 ms
45,412 KB
testcase_21 AC 85 ms
45,672 KB
testcase_22 AC 89 ms
49,568 KB
testcase_23 AC 90 ms
49,916 KB
testcase_24 AC 89 ms
49,928 KB
testcase_25 AC 94 ms
49,652 KB
testcase_26 AC 91 ms
49,564 KB
testcase_27 AC 89 ms
49,788 KB
testcase_28 AC 94 ms
49,464 KB
testcase_29 AC 89 ms
49,852 KB
testcase_30 AC 92 ms
49,680 KB
testcase_31 AC 83 ms
49,856 KB
testcase_32 AC 91 ms
49,692 KB
testcase_33 AC 90 ms
50,148 KB
testcase_34 AC 86 ms
49,972 KB
testcase_35 AC 86 ms
50,208 KB
testcase_36 AC 86 ms
50,032 KB
testcase_37 AC 85 ms
49,652 KB
testcase_38 AC 87 ms
49,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 = 100 * n + 10;
        int[][] dp = new int[n + 1][base * 2];
        int max = 0;
        dp[0][base] = 1;
        for (int i = 1; i <= n; i++) {
            int x = sc.nextInt();
            for (int j = base - max; j <= base + max; j++) {
                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;
            }
            max += x;
        }
        long ans = 0;
        for (int i = 0; i < dp[n].length; i++) {
            ans += (long)dp[n][i] * Math.abs(i - base) % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0