結果

問題 No.1645 AB's abs
ユーザー 👑 rin204rin204
提出日時 2021-09-03 18:44:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 79,184 KB
最終ジャッジ日時 2024-05-08 22:07:14
合計ジャッジ時間 5,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 68 ms
70,784 KB
testcase_03 AC 43 ms
53,504 KB
testcase_04 AC 44 ms
54,016 KB
testcase_05 AC 43 ms
53,248 KB
testcase_06 AC 44 ms
53,376 KB
testcase_07 AC 43 ms
54,016 KB
testcase_08 AC 70 ms
73,984 KB
testcase_09 AC 75 ms
76,288 KB
testcase_10 AC 69 ms
71,936 KB
testcase_11 AC 73 ms
74,112 KB
testcase_12 AC 70 ms
73,856 KB
testcase_13 AC 117 ms
77,056 KB
testcase_14 AC 100 ms
76,672 KB
testcase_15 AC 117 ms
77,440 KB
testcase_16 AC 118 ms
76,748 KB
testcase_17 AC 112 ms
76,772 KB
testcase_18 AC 109 ms
76,672 KB
testcase_19 AC 112 ms
76,672 KB
testcase_20 AC 102 ms
76,656 KB
testcase_21 AC 108 ms
76,416 KB
testcase_22 AC 114 ms
76,772 KB
testcase_23 AC 110 ms
76,928 KB
testcase_24 AC 114 ms
76,868 KB
testcase_25 AC 118 ms
77,224 KB
testcase_26 AC 114 ms
76,920 KB
testcase_27 AC 122 ms
76,800 KB
testcase_28 AC 112 ms
76,672 KB
testcase_29 AC 117 ms
76,976 KB
testcase_30 AC 121 ms
77,056 KB
testcase_31 AC 114 ms
77,184 KB
testcase_32 AC 118 ms
77,184 KB
testcase_33 AC 145 ms
78,720 KB
testcase_34 AC 146 ms
78,336 KB
testcase_35 AC 142 ms
79,184 KB
testcase_36 AC 140 ms
78,976 KB
testcase_37 AC 143 ms
78,848 KB
testcase_38 AC 52 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd
MOD = 998244353

n = int(input())
alst = list(map(int, input().split()))
dp = dd(int)
dp[0] = 1

for a in alst:
    dp2 = dd(int)
    for k, v in dp.items():
        dp2[k - a] += v
        dp2[k + a] += v
        dp2[k - a] %= MOD
        dp2[k + a] %= MOD
    dp = dp2
            
ans = 0
for k, v in dp.items():
    ans += abs(k) * v
    ans %= MOD
print(ans)
0