結果

問題 No.1645 AB's abs
ユーザー H20H20
提出日時 2021-08-13 22:15:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 78,436 KB
最終ジャッジ日時 2024-10-03 19:38:07
合計ジャッジ時間 4,994 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,244 KB
testcase_01 AC 36 ms
54,844 KB
testcase_02 AC 55 ms
69,092 KB
testcase_03 AC 36 ms
53,756 KB
testcase_04 AC 36 ms
54,596 KB
testcase_05 AC 40 ms
54,104 KB
testcase_06 AC 37 ms
53,808 KB
testcase_07 AC 36 ms
53,960 KB
testcase_08 AC 54 ms
69,208 KB
testcase_09 AC 56 ms
69,076 KB
testcase_10 AC 53 ms
67,892 KB
testcase_11 AC 55 ms
69,080 KB
testcase_12 AC 54 ms
68,224 KB
testcase_13 AC 108 ms
77,392 KB
testcase_14 AC 106 ms
77,536 KB
testcase_15 AC 110 ms
77,276 KB
testcase_16 AC 107 ms
76,892 KB
testcase_17 AC 110 ms
77,624 KB
testcase_18 AC 110 ms
77,104 KB
testcase_19 AC 112 ms
76,932 KB
testcase_20 AC 105 ms
77,216 KB
testcase_21 AC 104 ms
76,756 KB
testcase_22 AC 111 ms
76,988 KB
testcase_23 AC 107 ms
77,124 KB
testcase_24 AC 106 ms
77,024 KB
testcase_25 AC 127 ms
77,184 KB
testcase_26 AC 110 ms
77,260 KB
testcase_27 AC 111 ms
77,140 KB
testcase_28 AC 121 ms
77,192 KB
testcase_29 AC 107 ms
77,240 KB
testcase_30 AC 111 ms
77,304 KB
testcase_31 AC 108 ms
77,244 KB
testcase_32 AC 109 ms
77,228 KB
testcase_33 AC 127 ms
77,916 KB
testcase_34 AC 132 ms
78,164 KB
testcase_35 AC 135 ms
77,996 KB
testcase_36 AC 129 ms
78,436 KB
testcase_37 AC 137 ms
77,900 KB
testcase_38 AC 51 ms
64,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
mod = 998244353
N = int(input())
A = list(map(int, input().split())) 
d = collections.defaultdict(int)
d[0]=1
for a in A:
    nextd = collections.defaultdict(int)
    for k,v in d.items():
        nextd[abs(k+a)]+=v
        nextd[abs(k-a)]+=v
    d = nextd
ans = 0
for k,v in d.items():
    ans = (ans+k*v)%mod
print(ans)
0