結果

問題 No.1645 AB's abs
ユーザー ProgrammerryokiProgrammerryoki
提出日時 2021-08-13 21:36:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,392 KB
最終ジャッジ日時 2024-10-03 17:44:29
合計ジャッジ時間 13,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 63 ms
12,544 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
11,008 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 102 ms
13,824 KB
testcase_09 AC 93 ms
13,952 KB
testcase_10 AC 78 ms
13,184 KB
testcase_11 AC 78 ms
13,312 KB
testcase_12 AC 75 ms
13,440 KB
testcase_13 AC 455 ms
36,096 KB
testcase_14 AC 333 ms
31,104 KB
testcase_15 AC 424 ms
36,352 KB
testcase_16 AC 402 ms
34,304 KB
testcase_17 AC 406 ms
35,456 KB
testcase_18 AC 355 ms
32,896 KB
testcase_19 AC 396 ms
35,712 KB
testcase_20 AC 334 ms
31,104 KB
testcase_21 AC 385 ms
33,280 KB
testcase_22 AC 416 ms
35,328 KB
testcase_23 AC 410 ms
36,224 KB
testcase_24 AC 409 ms
36,992 KB
testcase_25 AC 413 ms
37,248 KB
testcase_26 AC 429 ms
36,608 KB
testcase_27 AC 443 ms
37,120 KB
testcase_28 AC 460 ms
36,864 KB
testcase_29 AC 421 ms
36,864 KB
testcase_30 AC 428 ms
37,760 KB
testcase_31 AC 444 ms
37,376 KB
testcase_32 AC 429 ms
37,632 KB
testcase_33 AC 531 ms
43,136 KB
testcase_34 AC 492 ms
43,264 KB
testcase_35 AC 492 ms
43,392 KB
testcase_36 AC 512 ms
43,264 KB
testcase_37 AC 486 ms
43,392 KB
testcase_38 AC 298 ms
27,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

N = int(input())
A = [int(i) for i in input().split()]
r = 100*N
w = r*2
dp = [[0]*(w+1) for i in range(N+1)]
dp[0][r] = 1
for i in range(N):
    num = A[i]
    for j in range(w+1):
        if dp[i][j] == 0:
            continue
        dp[i+1][j+num] += dp[i][j]
        dp[i+1][j-num] += dp[i][j]
total = 0
for i in range(w+1):
    total += abs(dp[-1][i] * (i-r))
    total %= MOD
print(total)
0