結果

問題 No.1645 AB's abs
ユーザー convexineqconvexineq
提出日時 2021-08-13 21:32:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 62,300 KB
最終ジャッジ日時 2024-10-03 17:25:40
合計ジャッジ時間 3,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,216 KB
testcase_01 AC 39 ms
52,680 KB
testcase_02 AC 49 ms
60,100 KB
testcase_03 AC 37 ms
52,624 KB
testcase_04 AC 39 ms
52,860 KB
testcase_05 AC 43 ms
59,776 KB
testcase_06 AC 48 ms
59,908 KB
testcase_07 AC 42 ms
58,288 KB
testcase_08 AC 46 ms
61,388 KB
testcase_09 AC 47 ms
61,156 KB
testcase_10 AC 47 ms
59,972 KB
testcase_11 AC 46 ms
60,328 KB
testcase_12 AC 47 ms
61,304 KB
testcase_13 AC 57 ms
61,124 KB
testcase_14 AC 55 ms
62,300 KB
testcase_15 AC 58 ms
60,680 KB
testcase_16 AC 57 ms
61,036 KB
testcase_17 AC 57 ms
61,356 KB
testcase_18 AC 56 ms
60,104 KB
testcase_19 AC 57 ms
60,876 KB
testcase_20 AC 55 ms
60,328 KB
testcase_21 AC 56 ms
60,472 KB
testcase_22 AC 57 ms
61,540 KB
testcase_23 AC 58 ms
60,152 KB
testcase_24 AC 58 ms
61,728 KB
testcase_25 AC 57 ms
60,528 KB
testcase_26 AC 57 ms
60,832 KB
testcase_27 AC 58 ms
60,888 KB
testcase_28 AC 58 ms
60,488 KB
testcase_29 AC 57 ms
61,304 KB
testcase_30 AC 57 ms
60,760 KB
testcase_31 AC 59 ms
60,996 KB
testcase_32 AC 58 ms
61,108 KB
testcase_33 AC 57 ms
60,708 KB
testcase_34 AC 61 ms
61,352 KB
testcase_35 AC 58 ms
60,200 KB
testcase_36 AC 58 ms
60,648 KB
testcase_37 AC 58 ms
60,888 KB
testcase_38 AC 59 ms
60,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n = int(input())
*a, = map(int,input().split())
M = n*200+1
dp = [0]*M
dp[0] = 1
for ai in a:
    ai *= 2
    for i in range(ai,M)[::-1]:
        dp[i] += dp[i-ai]
        dp[i] %= MOD
offset = sum(a)
ans = 0
for i,v in enumerate(dp):
    ans += abs(i-offset)*v%MOD
print(ans%MOD)
0