結果

問題 No.1645 AB's abs
ユーザー ks2mks2m
提出日時 2021-08-13 21:34:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 875 bytes
コンパイル時間 3,021 ms
コンパイル使用メモリ 78,948 KB
実行使用メモリ 56,344 KB
最終ジャッジ日時 2024-10-03 17:35:07
合計ジャッジ時間 12,328 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,264 KB
testcase_01 AC 109 ms
40,072 KB
testcase_02 AC 160 ms
44,180 KB
testcase_03 AC 113 ms
40,992 KB
testcase_04 AC 113 ms
41,020 KB
testcase_05 AC 106 ms
41,200 KB
testcase_06 AC 114 ms
41,168 KB
testcase_07 AC 116 ms
40,016 KB
testcase_08 AC 166 ms
45,268 KB
testcase_09 AC 187 ms
45,644 KB
testcase_10 AC 168 ms
45,340 KB
testcase_11 AC 169 ms
45,520 KB
testcase_12 AC 176 ms
45,732 KB
testcase_13 AC 282 ms
50,108 KB
testcase_14 AC 258 ms
47,948 KB
testcase_15 AC 284 ms
50,692 KB
testcase_16 AC 281 ms
49,476 KB
testcase_17 AC 284 ms
50,304 KB
testcase_18 AC 266 ms
48,184 KB
testcase_19 AC 281 ms
53,064 KB
testcase_20 AC 255 ms
47,952 KB
testcase_21 AC 274 ms
49,072 KB
testcase_22 AC 280 ms
50,304 KB
testcase_23 AC 275 ms
50,272 KB
testcase_24 AC 286 ms
50,676 KB
testcase_25 AC 279 ms
50,616 KB
testcase_26 AC 279 ms
50,148 KB
testcase_27 AC 337 ms
50,276 KB
testcase_28 AC 286 ms
49,964 KB
testcase_29 AC 290 ms
49,648 KB
testcase_30 AC 297 ms
50,932 KB
testcase_31 AC 296 ms
50,892 KB
testcase_32 AC 293 ms
51,292 KB
testcase_33 AC 358 ms
55,600 KB
testcase_34 AC 352 ms
54,044 KB
testcase_35 AC 350 ms
54,432 KB
testcase_36 AC 371 ms
56,344 KB
testcase_37 AC 367 ms
54,928 KB
testcase_38 AC 158 ms
42,200 KB
権限があれば一括ダウンロードができます

ソースコード

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)) % mod);
				next = k - a[i];
				wk.put(next, (wk.getOrDefault(next, 0L) + map.get(k)) % mod);
			}
			map = wk;
		}
		long ans = 0;
		for (Integer k : map.keySet()) {
			long val = Math.abs(k) * map.get(k) % mod;
			ans += val;
		}
		ans %= mod;
		System.out.println(ans);
	}
}
0