結果

問題 No.1645 AB's abs
ユーザー KeroruKeroru
提出日時 2021-08-13 22:54:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 97,144 KB
最終ジャッジ日時 2024-10-03 21:48:38
合計ジャッジ時間 4,240 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,420 KB
testcase_01 AC 32 ms
52,776 KB
testcase_02 AC 68 ms
73,528 KB
testcase_03 AC 36 ms
52,956 KB
testcase_04 AC 32 ms
52,916 KB
testcase_05 AC 39 ms
59,600 KB
testcase_06 AC 48 ms
64,148 KB
testcase_07 AC 38 ms
60,344 KB
testcase_08 AC 66 ms
73,852 KB
testcase_09 AC 65 ms
74,612 KB
testcase_10 AC 68 ms
73,560 KB
testcase_11 AC 65 ms
74,104 KB
testcase_12 AC 65 ms
74,180 KB
testcase_13 AC 80 ms
76,212 KB
testcase_14 AC 75 ms
76,096 KB
testcase_15 AC 79 ms
76,316 KB
testcase_16 AC 80 ms
76,220 KB
testcase_17 AC 86 ms
76,196 KB
testcase_18 AC 83 ms
76,328 KB
testcase_19 AC 88 ms
76,260 KB
testcase_20 AC 75 ms
76,292 KB
testcase_21 AC 80 ms
76,240 KB
testcase_22 AC 82 ms
76,184 KB
testcase_23 AC 80 ms
76,144 KB
testcase_24 AC 80 ms
76,180 KB
testcase_25 AC 81 ms
76,116 KB
testcase_26 AC 80 ms
76,032 KB
testcase_27 AC 82 ms
76,108 KB
testcase_28 AC 82 ms
76,108 KB
testcase_29 AC 80 ms
76,500 KB
testcase_30 AC 84 ms
76,324 KB
testcase_31 AC 82 ms
76,060 KB
testcase_32 AC 81 ms
76,116 KB
testcase_33 AC 107 ms
96,028 KB
testcase_34 AC 110 ms
96,196 KB
testcase_35 AC 103 ms
95,936 KB
testcase_36 AC 102 ms
95,892 KB
testcase_37 AC 103 ms
95,676 KB
testcase_38 AC 107 ms
97,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mo=998244353
n,*a=map(int,open(0).read().split())
N=sum(a)+1
d=[0]*N*2
d[0]=1
for x in a:
    nx=[0]*N*2
    for i in range(-N,N+1):
        if -N<=i-x<=N:nx[i-x]+=d[i]
        if -N<=i+x<=N:nx[i+x]+=d[i]
        nx[i-x]%=mo
        nx[i+x]%=mo
    d=nx[:]

ans=0
for i in range(-N,N+1):
    ans+=d[i]*abs(i)
    ans%=mo

print(ans)
0