結果

問題 No.1645 AB's abs
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-10 11:57:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-06-25 18:13:49
合計ジャッジ時間 5,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
65,024 KB
testcase_01 AC 51 ms
61,824 KB
testcase_02 AC 82 ms
75,904 KB
testcase_03 AC 54 ms
62,080 KB
testcase_04 AC 57 ms
64,896 KB
testcase_05 AC 58 ms
65,664 KB
testcase_06 AC 63 ms
68,480 KB
testcase_07 AC 58 ms
65,408 KB
testcase_08 AC 86 ms
77,952 KB
testcase_09 AC 86 ms
78,464 KB
testcase_10 AC 82 ms
76,928 KB
testcase_11 AC 83 ms
77,312 KB
testcase_12 AC 84 ms
77,696 KB
testcase_13 AC 123 ms
91,904 KB
testcase_14 AC 113 ms
90,496 KB
testcase_15 AC 118 ms
92,032 KB
testcase_16 AC 118 ms
91,136 KB
testcase_17 AC 115 ms
91,648 KB
testcase_18 AC 116 ms
90,752 KB
testcase_19 AC 121 ms
92,160 KB
testcase_20 AC 112 ms
90,240 KB
testcase_21 AC 114 ms
91,008 KB
testcase_22 AC 115 ms
91,904 KB
testcase_23 AC 116 ms
92,672 KB
testcase_24 AC 116 ms
92,796 KB
testcase_25 AC 117 ms
92,416 KB
testcase_26 AC 117 ms
92,672 KB
testcase_27 AC 118 ms
92,416 KB
testcase_28 AC 118 ms
92,288 KB
testcase_29 AC 116 ms
92,928 KB
testcase_30 AC 116 ms
92,864 KB
testcase_31 AC 116 ms
92,672 KB
testcase_32 AC 116 ms
92,416 KB
testcase_33 AC 117 ms
92,288 KB
testcase_34 AC 114 ms
92,032 KB
testcase_35 AC 116 ms
91,648 KB
testcase_36 AC 116 ms
91,904 KB
testcase_37 AC 115 ms
92,032 KB
testcase_38 AC 117 ms
91,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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