結果

問題 No.1645 AB's abs
ユーザー playerplayer
提出日時 2023-12-23 00:23:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 84,468 KB
最終ジャッジ日時 2024-09-27 11:42:26
合計ジャッジ時間 4,987 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
64,228 KB
testcase_01 AC 52 ms
62,004 KB
testcase_02 AC 75 ms
72,944 KB
testcase_03 AC 49 ms
61,952 KB
testcase_04 AC 54 ms
64,804 KB
testcase_05 AC 56 ms
65,232 KB
testcase_06 AC 60 ms
66,120 KB
testcase_07 AC 55 ms
64,292 KB
testcase_08 AC 79 ms
73,660 KB
testcase_09 AC 80 ms
73,188 KB
testcase_10 AC 78 ms
73,144 KB
testcase_11 AC 78 ms
74,260 KB
testcase_12 AC 78 ms
72,792 KB
testcase_13 AC 109 ms
82,820 KB
testcase_14 AC 106 ms
82,392 KB
testcase_15 AC 113 ms
84,468 KB
testcase_16 AC 106 ms
82,188 KB
testcase_17 AC 111 ms
82,684 KB
testcase_18 AC 103 ms
81,892 KB
testcase_19 AC 107 ms
84,112 KB
testcase_20 AC 105 ms
83,064 KB
testcase_21 AC 108 ms
83,860 KB
testcase_22 AC 107 ms
83,808 KB
testcase_23 AC 110 ms
82,932 KB
testcase_24 AC 107 ms
83,080 KB
testcase_25 AC 106 ms
83,356 KB
testcase_26 AC 107 ms
83,284 KB
testcase_27 AC 110 ms
83,504 KB
testcase_28 AC 110 ms
82,748 KB
testcase_29 AC 112 ms
83,416 KB
testcase_30 AC 109 ms
83,664 KB
testcase_31 AC 111 ms
84,172 KB
testcase_32 AC 109 ms
83,168 KB
testcase_33 AC 107 ms
82,600 KB
testcase_34 AC 106 ms
81,752 KB
testcase_35 AC 106 ms
82,068 KB
testcase_36 AC 108 ms
82,592 KB
testcase_37 AC 108 ms
81,612 KB
testcase_38 AC 107 ms
82,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0 for _ in range(2*10**4+2)] for _ in range(n+1)]
dp[0][10**4] = 1
for i in range(n):
    for j in range(2*10**4+2):
        if 0 <= j-a[i] <= 2*10**4+1:
            dp[i+1][j] += dp[i][j-a[i]]
        if 0 <= j+a[i] <= 2*10**4+1:
            dp[i+1][j] += dp[i][j+a[i]]
            
        dp[i+1][j] %= mod
        
ans = 0
st = 10**4
for i in range(2*10**4+2):
    num = (i-st)*dp[n][i]
    # if num != 0:
    #     print(i,num)
    ans += abs((i-st))*dp[n][i]
    ans %= mod
    
print(ans)
0