結果

問題 No.1645 AB's abs
ユーザー 👑 rin204rin204
提出日時 2021-09-03 18:44:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 78,908 KB
最終ジャッジ日時 2024-12-15 05:55:13
合計ジャッジ時間 4,930 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,244 KB
testcase_01 AC 37 ms
53,876 KB
testcase_02 AC 59 ms
71,368 KB
testcase_03 AC 36 ms
53,624 KB
testcase_04 AC 36 ms
53,616 KB
testcase_05 AC 36 ms
54,232 KB
testcase_06 AC 40 ms
54,788 KB
testcase_07 AC 36 ms
53,648 KB
testcase_08 AC 62 ms
73,944 KB
testcase_09 AC 68 ms
76,432 KB
testcase_10 AC 60 ms
73,868 KB
testcase_11 AC 62 ms
74,048 KB
testcase_12 AC 60 ms
74,420 KB
testcase_13 AC 102 ms
76,924 KB
testcase_14 AC 92 ms
76,772 KB
testcase_15 AC 103 ms
77,116 KB
testcase_16 AC 104 ms
76,600 KB
testcase_17 AC 108 ms
76,652 KB
testcase_18 AC 95 ms
76,584 KB
testcase_19 AC 98 ms
76,920 KB
testcase_20 AC 90 ms
76,516 KB
testcase_21 AC 94 ms
76,600 KB
testcase_22 AC 100 ms
76,772 KB
testcase_23 AC 94 ms
76,864 KB
testcase_24 AC 98 ms
76,664 KB
testcase_25 AC 98 ms
77,016 KB
testcase_26 AC 95 ms
76,452 KB
testcase_27 AC 103 ms
77,120 KB
testcase_28 AC 97 ms
76,568 KB
testcase_29 AC 104 ms
76,920 KB
testcase_30 AC 102 ms
76,964 KB
testcase_31 AC 101 ms
77,008 KB
testcase_32 AC 102 ms
77,020 KB
testcase_33 AC 125 ms
78,908 KB
testcase_34 AC 119 ms
78,192 KB
testcase_35 AC 123 ms
78,700 KB
testcase_36 AC 120 ms
78,688 KB
testcase_37 AC 120 ms
78,868 KB
testcase_38 AC 46 ms
63,856 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