結果

問題 No.1645 AB's abs
ユーザー ShirotsumeShirotsume
提出日時 2021-08-13 21:51:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,764 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 78,976 KB
最終ジャッジ日時 2024-10-03 18:31:41
合計ジャッジ時間 51,121 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
62,592 KB
testcase_01 AC 133 ms
62,592 KB
testcase_02 AC 587 ms
62,976 KB
testcase_03 AC 132 ms
62,592 KB
testcase_04 AC 151 ms
62,592 KB
testcase_05 AC 185 ms
62,592 KB
testcase_06 AC 241 ms
62,592 KB
testcase_07 AC 165 ms
62,592 KB
testcase_08 AC 725 ms
63,360 KB
testcase_09 AC 720 ms
63,488 KB
testcase_10 AC 672 ms
63,232 KB
testcase_11 AC 650 ms
63,360 KB
testcase_12 AC 690 ms
63,360 KB
testcase_13 AC 1,676 ms
72,448 KB
testcase_14 AC 1,566 ms
69,632 KB
testcase_15 AC 1,725 ms
72,704 KB
testcase_16 AC 1,649 ms
72,064 KB
testcase_17 AC 1,636 ms
72,320 KB
testcase_18 AC 1,595 ms
70,784 KB
testcase_19 AC 1,660 ms
72,064 KB
testcase_20 AC 1,562 ms
69,760 KB
testcase_21 AC 1,653 ms
71,040 KB
testcase_22 AC 1,662 ms
72,192 KB
testcase_23 AC 1,692 ms
71,808 KB
testcase_24 AC 1,734 ms
72,576 KB
testcase_25 AC 1,756 ms
72,960 KB
testcase_26 AC 1,703 ms
72,192 KB
testcase_27 AC 1,734 ms
72,832 KB
testcase_28 AC 1,677 ms
72,576 KB
testcase_29 AC 1,669 ms
72,576 KB
testcase_30 AC 1,728 ms
73,344 KB
testcase_31 AC 1,745 ms
73,088 KB
testcase_32 AC 1,705 ms
73,344 KB
testcase_33 AC 1,754 ms
78,848 KB
testcase_34 AC 1,764 ms
78,976 KB
testcase_35 AC 1,757 ms
78,848 KB
testcase_36 AC 1,729 ms
78,976 KB
testcase_37 AC 1,698 ms
78,976 KB
testcase_38 AC 1,685 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dp = [[0] * 60000 for _ in range(110)]
dp[0][0] = 1
n = int(input())
a = list(map(int,input().split()))
mod = 998244353
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