結果

問題 No.1645 AB's abs
ユーザー umaruuuunumaruuuun
提出日時 2021-08-20 15:13:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 371 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 34,304 KB
最終ジャッジ日時 2024-10-13 18:17:30
合計ジャッジ時間 49,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
10,880 KB
testcase_01 AC 59 ms
10,880 KB
testcase_02 AC 743 ms
15,744 KB
testcase_03 AC 58 ms
10,880 KB
testcase_04 AC 78 ms
11,008 KB
testcase_05 AC 122 ms
11,264 KB
testcase_06 AC 208 ms
11,776 KB
testcase_07 AC 100 ms
11,264 KB
testcase_08 AC 908 ms
17,408 KB
testcase_09 AC 895 ms
17,664 KB
testcase_10 AC 791 ms
16,640 KB
testcase_11 AC 812 ms
17,024 KB
testcase_12 AC 825 ms
17,152 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

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