結果

問題 No.1645 AB's abs
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-08-13 21:38:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 97,736 KB
最終ジャッジ日時 2024-10-03 17:51:08
合計ジャッジ時間 6,318 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
61,824 KB
testcase_01 AC 51 ms
60,416 KB
testcase_02 AC 67 ms
69,120 KB
testcase_03 AC 46 ms
60,416 KB
testcase_04 AC 53 ms
62,080 KB
testcase_05 AC 51 ms
62,720 KB
testcase_06 AC 62 ms
63,872 KB
testcase_07 AC 56 ms
62,464 KB
testcase_08 AC 76 ms
70,144 KB
testcase_09 AC 76 ms
70,528 KB
testcase_10 AC 77 ms
69,632 KB
testcase_11 AC 75 ms
69,632 KB
testcase_12 AC 75 ms
70,144 KB
testcase_13 AC 160 ms
96,656 KB
testcase_14 AC 148 ms
94,184 KB
testcase_15 AC 159 ms
96,748 KB
testcase_16 AC 154 ms
95,412 KB
testcase_17 AC 156 ms
96,032 KB
testcase_18 AC 152 ms
94,992 KB
testcase_19 AC 159 ms
96,272 KB
testcase_20 AC 148 ms
94,072 KB
testcase_21 AC 154 ms
95,456 KB
testcase_22 AC 158 ms
95,988 KB
testcase_23 AC 159 ms
97,172 KB
testcase_24 AC 159 ms
97,448 KB
testcase_25 AC 161 ms
97,400 KB
testcase_26 AC 162 ms
96,924 KB
testcase_27 AC 162 ms
97,148 KB
testcase_28 AC 161 ms
97,056 KB
testcase_29 AC 159 ms
97,100 KB
testcase_30 AC 160 ms
97,012 KB
testcase_31 AC 162 ms
97,516 KB
testcase_32 AC 161 ms
97,316 KB
testcase_33 AC 164 ms
97,204 KB
testcase_34 AC 174 ms
97,556 KB
testcase_35 AC 162 ms
97,248 KB
testcase_36 AC 164 ms
97,116 KB
testcase_37 AC 166 ms
97,324 KB
testcase_38 AC 153 ms
97,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))

d = [[0 for i in range(2*100*100+1)] for j in range(n+1)]
d[0][100*100] = 1

for i, x in enumerate(a):
    for j in range(2*100*100+1):
        if 0 <= j+x <= 2*100*100:
            d[i+1][j+x] += d[i][j]
        if 0 <= j-x <= 2*100*100:
            d[i+1][j-x] += d[i][j]

ans = 0
mod = 998244353

for i in range(2*100*100+1):
    ans += abs((i-100*100)*d[-1][i])
    ans %= mod
print(ans)
#print(d[-1][100*100-20:100*100+20])
0