結果

問題 No.1645 AB's abs
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2021-08-26 23:08:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,085 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,728 KB
最終ジャッジ日時 2024-11-18 21:43:56
合計ジャッジ時間 29,746 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
11,648 KB
testcase_01 AC 38 ms
11,648 KB
testcase_02 AC 300 ms
14,080 KB
testcase_03 AC 38 ms
11,648 KB
testcase_04 AC 48 ms
11,648 KB
testcase_05 AC 66 ms
11,776 KB
testcase_06 AC 99 ms
12,032 KB
testcase_07 AC 58 ms
11,776 KB
testcase_08 AC 385 ms
14,720 KB
testcase_09 AC 397 ms
14,976 KB
testcase_10 AC 345 ms
14,592 KB
testcase_11 AC 349 ms
14,720 KB
testcase_12 AC 355 ms
14,720 KB
testcase_13 AC 987 ms
23,040 KB
testcase_14 AC 907 ms
21,376 KB
testcase_15 AC 978 ms
23,040 KB
testcase_16 AC 972 ms
22,656 KB
testcase_17 AC 1,033 ms
22,784 KB
testcase_18 AC 933 ms
21,888 KB
testcase_19 AC 965 ms
22,784 KB
testcase_20 AC 898 ms
21,376 KB
testcase_21 AC 926 ms
22,272 KB
testcase_22 AC 956 ms
22,656 KB
testcase_23 AC 984 ms
22,912 KB
testcase_24 AC 1,003 ms
23,296 KB
testcase_25 AC 1,035 ms
23,296 KB
testcase_26 AC 1,003 ms
22,912 KB
testcase_27 AC 1,029 ms
23,296 KB
testcase_28 AC 979 ms
23,168 KB
testcase_29 AC 1,008 ms
23,296 KB
testcase_30 AC 1,029 ms
23,424 KB
testcase_31 AC 981 ms
23,424 KB
testcase_32 AC 1,042 ms
23,424 KB
testcase_33 AC 1,007 ms
25,472 KB
testcase_34 AC 1,085 ms
25,472 KB
testcase_35 AC 1,047 ms
25,728 KB
testcase_36 AC 1,043 ms
25,600 KB
testcase_37 AC 985 ms
25,600 KB
testcase_38 AC 913 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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