結果

問題 No.1645 AB's abs
ユーザー tentententen
提出日時 2022-09-29 10:07:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 1,659 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 77,608 KB
実行使用メモリ 41,084 KB
最終ジャッジ日時 2024-06-02 01:55:40
合計ジャッジ時間 6,097 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,148 KB
testcase_01 AC 52 ms
37,248 KB
testcase_02 AC 56 ms
36,920 KB
testcase_03 AC 53 ms
37,156 KB
testcase_04 AC 53 ms
37,060 KB
testcase_05 AC 53 ms
37,036 KB
testcase_06 AC 52 ms
37,336 KB
testcase_07 AC 52 ms
37,280 KB
testcase_08 AC 57 ms
37,244 KB
testcase_09 AC 57 ms
37,492 KB
testcase_10 AC 56 ms
37,304 KB
testcase_11 AC 58 ms
37,588 KB
testcase_12 AC 58 ms
37,400 KB
testcase_13 AC 81 ms
39,528 KB
testcase_14 AC 79 ms
38,696 KB
testcase_15 AC 83 ms
39,100 KB
testcase_16 AC 85 ms
39,592 KB
testcase_17 AC 85 ms
39,324 KB
testcase_18 AC 81 ms
38,956 KB
testcase_19 AC 84 ms
39,128 KB
testcase_20 AC 82 ms
38,868 KB
testcase_21 AC 81 ms
38,956 KB
testcase_22 AC 80 ms
39,216 KB
testcase_23 AC 71 ms
38,984 KB
testcase_24 AC 85 ms
39,264 KB
testcase_25 AC 82 ms
39,336 KB
testcase_26 AC 81 ms
38,840 KB
testcase_27 AC 82 ms
39,696 KB
testcase_28 AC 83 ms
39,244 KB
testcase_29 AC 80 ms
39,756 KB
testcase_30 AC 86 ms
39,540 KB
testcase_31 AC 82 ms
39,660 KB
testcase_32 AC 85 ms
39,420 KB
testcase_33 AC 92 ms
40,392 KB
testcase_34 AC 85 ms
40,516 KB
testcase_35 AC 90 ms
40,692 KB
testcase_36 AC 88 ms
40,484 KB
testcase_37 AC 86 ms
40,516 KB
testcase_38 AC 93 ms
41,084 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[] current = new int[1];
        current[0] = 1;
        int max = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            int[] next = new int[max + x + 1];
            for (int j = 0; j <= max; j++) {
                next[j + x] += current[j];
                next[j + x] %= MOD;
                next[Math.abs(j - x)] += current[j];
                next[Math.abs(j - x)] %= MOD;
            }
            max += x;
            current = next;
        }
        long ans = 0;
        for (int i = 1; i < current.length; i++) {
            ans += (long)i * current[i] % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0