結果

問題 No.1645 AB's abs
ユーザー ks2mks2m
提出日時 2021-08-13 21:33:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 880 bytes
コンパイル時間 3,631 ms
コンパイル使用メモリ 87,516 KB
実行使用メモリ 66,788 KB
最終ジャッジ日時 2024-10-03 17:31:22
合計ジャッジ時間 12,843 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,988 KB
testcase_01 AC 98 ms
52,556 KB
testcase_02 AC 148 ms
56,556 KB
testcase_03 AC 113 ms
53,984 KB
testcase_04 AC 120 ms
54,240 KB
testcase_05 AC 124 ms
54,088 KB
testcase_06 AC 124 ms
54,028 KB
testcase_07 AC 126 ms
54,324 KB
testcase_08 AC 177 ms
56,968 KB
testcase_09 AC 172 ms
56,860 KB
testcase_10 AC 162 ms
56,900 KB
testcase_11 AC 167 ms
56,564 KB
testcase_12 AC 170 ms
56,744 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		int mod = 998244353;
		Map<Integer, Long> map = new HashMap<>();
		map.put(0, 1L);
		for (int i = 0; i < n; i++) {
			Map<Integer, Long> wk = new HashMap<>();
			for (Integer k : map.keySet()) {
				int next = k + a[i];
				wk.put(next, wk.getOrDefault(next, 0L) + map.get(k));
				next = k - a[i];
				wk.put(next, wk.getOrDefault(next, 0L) + map.get(k));
			}
			map = wk;
		}
		long ans = 0;
		for (Integer k : map.keySet()) {
			long v = map.get(k) % mod;
			long val = Math.abs(k) * v % mod;
			ans += val;
		}
		ans %= mod;
		System.out.println(ans);
	}
}
0