結果

問題 No.1645 AB's abs
ユーザー umaruuuunumaruuuun
提出日時 2021-08-20 15:16:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 88,000 KB
最終ジャッジ日時 2024-10-13 18:19:23
合計ジャッジ時間 5,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
66,904 KB
testcase_01 AC 50 ms
63,580 KB
testcase_02 AC 82 ms
76,120 KB
testcase_03 AC 49 ms
63,468 KB
testcase_04 AC 56 ms
67,068 KB
testcase_05 AC 59 ms
67,804 KB
testcase_06 AC 67 ms
69,836 KB
testcase_07 AC 57 ms
67,336 KB
testcase_08 AC 90 ms
77,120 KB
testcase_09 AC 82 ms
77,216 KB
testcase_10 AC 82 ms
76,512 KB
testcase_11 AC 81 ms
76,256 KB
testcase_12 AC 84 ms
77,716 KB
testcase_13 AC 116 ms
86,276 KB
testcase_14 AC 110 ms
86,468 KB
testcase_15 AC 119 ms
87,104 KB
testcase_16 AC 114 ms
86,924 KB
testcase_17 AC 116 ms
85,984 KB
testcase_18 AC 111 ms
86,812 KB
testcase_19 AC 113 ms
86,224 KB
testcase_20 AC 110 ms
85,152 KB
testcase_21 AC 113 ms
86,080 KB
testcase_22 AC 116 ms
86,144 KB
testcase_23 AC 117 ms
88,000 KB
testcase_24 AC 115 ms
87,164 KB
testcase_25 AC 115 ms
87,112 KB
testcase_26 AC 116 ms
86,624 KB
testcase_27 AC 115 ms
87,432 KB
testcase_28 AC 116 ms
86,768 KB
testcase_29 AC 120 ms
86,856 KB
testcase_30 AC 122 ms
87,428 KB
testcase_31 AC 115 ms
87,280 KB
testcase_32 AC 119 ms
86,200 KB
testcase_33 AC 113 ms
86,568 KB
testcase_34 AC 113 ms
85,944 KB
testcase_35 AC 113 ms
87,836 KB
testcase_36 AC 112 ms
85,876 KB
testcase_37 AC 112 ms
87,124 KB
testcase_38 AC 120 ms
87,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
dp=[[0]*20001 for i in range(n+1)]
dp[0][0]=1
mod=998244353
for i in range(n):
    for j in range(-10000,10000):
        dp[i+1][j+a[i]]+=dp[i][j]
        dp[i+1][j-a[i]]+=dp[i][j]
        dp[i+1][j+a[i]]%=mod
        dp[i+1][j-a[i]]%=mod
ans=0
for i in range(-10000,10001):
    ans+=abs(i)*dp[n][i]
    ans%=mod
print(ans)
0