結果

問題 No.1645 AB's abs
ユーザー tentententen
提出日時 2024-04-24 13:46:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,807 bytes
コンパイル時間 2,823 ms
コンパイル使用メモリ 78,528 KB
実行使用メモリ 54,080 KB
最終ジャッジ日時 2024-11-06 22:04:10
合計ジャッジ時間 7,374 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,396 KB
testcase_01 AC 57 ms
50,512 KB
testcase_02 AC 60 ms
50,292 KB
testcase_03 AC 56 ms
50,308 KB
testcase_04 AC 57 ms
50,056 KB
testcase_05 AC 58 ms
50,424 KB
testcase_06 AC 59 ms
50,452 KB
testcase_07 AC 58 ms
50,268 KB
testcase_08 AC 63 ms
50,068 KB
testcase_09 AC 63 ms
49,988 KB
testcase_10 AC 63 ms
50,348 KB
testcase_11 AC 62 ms
50,296 KB
testcase_12 AC 63 ms
50,312 KB
testcase_13 AC 89 ms
51,468 KB
testcase_14 AC 73 ms
50,936 KB
testcase_15 AC 90 ms
51,416 KB
testcase_16 AC 88 ms
51,560 KB
testcase_17 AC 90 ms
51,588 KB
testcase_18 AC 86 ms
51,488 KB
testcase_19 AC 89 ms
51,500 KB
testcase_20 AC 85 ms
51,020 KB
testcase_21 AC 89 ms
51,588 KB
testcase_22 AC 89 ms
51,336 KB
testcase_23 AC 75 ms
51,088 KB
testcase_24 AC 88 ms
51,460 KB
testcase_25 AC 89 ms
51,540 KB
testcase_26 AC 88 ms
51,004 KB
testcase_27 AC 88 ms
51,160 KB
testcase_28 AC 91 ms
51,460 KB
testcase_29 AC 87 ms
51,376 KB
testcase_30 AC 90 ms
51,472 KB
testcase_31 AC 90 ms
51,456 KB
testcase_32 AC 87 ms
51,236 KB
testcase_33 AC 96 ms
54,068 KB
testcase_34 AC 96 ms
54,056 KB
testcase_35 AC 97 ms
54,068 KB
testcase_36 AC 97 ms
54,004 KB
testcase_37 AC 97 ms
54,032 KB
testcase_38 AC 100 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
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[] counts = new int[1];
        counts[0] = 1;
        int max = 0;
        while (n-- > 0) {
            int x = sc.nextInt();
            int[] next = new int[max + x + 1];
            for (int i = 0; i <= max; i++) {
                next[i + x] += counts[i];
                next[i + x] %= MOD;
                next[Math.abs(i - x)] += counts[i];
                next[Math.abs(i - x)] %= MOD;
            }
            counts = next;
            max += x;
        }
        long ans = 0;
        for (int i = 1; i < counts.length; i++) {
            ans += (long)counts[i] * i % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0