結果

問題 No.1645 AB's abs
ユーザー ntudantuda
提出日時 2021-08-15 01:19:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 78,244 KB
最終ジャッジ日時 2024-10-06 06:04:06
合計ジャッジ時間 4,343 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,820 KB
testcase_01 AC 37 ms
53,096 KB
testcase_02 AC 53 ms
66,320 KB
testcase_03 AC 37 ms
53,436 KB
testcase_04 AC 37 ms
52,380 KB
testcase_05 AC 37 ms
52,600 KB
testcase_06 AC 37 ms
53,156 KB
testcase_07 AC 37 ms
52,428 KB
testcase_08 AC 55 ms
68,392 KB
testcase_09 AC 57 ms
70,280 KB
testcase_10 AC 54 ms
67,272 KB
testcase_11 AC 55 ms
68,452 KB
testcase_12 AC 54 ms
69,140 KB
testcase_13 AC 87 ms
75,892 KB
testcase_14 AC 78 ms
75,404 KB
testcase_15 AC 88 ms
75,532 KB
testcase_16 AC 86 ms
75,736 KB
testcase_17 AC 83 ms
75,960 KB
testcase_18 AC 81 ms
75,752 KB
testcase_19 AC 82 ms
75,760 KB
testcase_20 AC 76 ms
75,468 KB
testcase_21 AC 84 ms
75,760 KB
testcase_22 AC 87 ms
76,236 KB
testcase_23 AC 83 ms
76,016 KB
testcase_24 AC 84 ms
75,696 KB
testcase_25 AC 86 ms
75,780 KB
testcase_26 AC 84 ms
75,840 KB
testcase_27 AC 89 ms
75,776 KB
testcase_28 AC 84 ms
75,932 KB
testcase_29 AC 89 ms
75,992 KB
testcase_30 AC 91 ms
75,556 KB
testcase_31 AC 86 ms
75,708 KB
testcase_32 AC 87 ms
75,956 KB
testcase_33 AC 108 ms
77,964 KB
testcase_34 AC 103 ms
77,612 KB
testcase_35 AC 106 ms
78,244 KB
testcase_36 AC 104 ms
77,960 KB
testcase_37 AC 104 ms
78,068 KB
testcase_38 AC 43 ms
60,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

mod = 998244353
dic1 = {0:1}
dic2 = {}
for i in range(N):
    for k,v in dic1.items():
        t = k + A[i]
        if t in dic2:
            dic2[t] = (dic2[t] + v) % mod
        else:
            dic2[t] = v
        t = k - A[i]
        if t in dic2:
            dic2[t] = (dic2[t] + v) % mod
        else:
            dic2[t] = v
    dic1,dic2 = dic2,dic1
    dic2.clear()
ans = 0
for k,v in dic1.items():
    ans = (ans + v * abs(k)) % mod
print(ans)
0