結果

問題 No.1645 AB's abs
ユーザー mkawa2mkawa2
提出日時 2021-08-13 21:39:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 891 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,136 KB
最終ジャッジ日時 2024-10-03 17:55:49
合計ジャッジ時間 4,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,720 KB
testcase_01 AC 40 ms
60,928 KB
testcase_02 AC 59 ms
70,656 KB
testcase_03 AC 41 ms
60,672 KB
testcase_04 AC 48 ms
62,976 KB
testcase_05 AC 46 ms
63,616 KB
testcase_06 AC 48 ms
65,024 KB
testcase_07 AC 44 ms
62,976 KB
testcase_08 AC 59 ms
71,936 KB
testcase_09 AC 59 ms
72,192 KB
testcase_10 AC 59 ms
71,552 KB
testcase_11 AC 59 ms
71,296 KB
testcase_12 AC 60 ms
71,424 KB
testcase_13 AC 114 ms
90,880 KB
testcase_14 AC 108 ms
90,880 KB
testcase_15 AC 121 ms
90,604 KB
testcase_16 AC 113 ms
90,584 KB
testcase_17 AC 112 ms
90,496 KB
testcase_18 AC 110 ms
91,008 KB
testcase_19 AC 116 ms
90,744 KB
testcase_20 AC 107 ms
90,880 KB
testcase_21 AC 111 ms
91,136 KB
testcase_22 AC 113 ms
90,880 KB
testcase_23 AC 121 ms
90,980 KB
testcase_24 AC 116 ms
90,624 KB
testcase_25 AC 113 ms
90,792 KB
testcase_26 AC 114 ms
90,808 KB
testcase_27 AC 117 ms
90,688 KB
testcase_28 AC 114 ms
90,496 KB
testcase_29 AC 115 ms
90,748 KB
testcase_30 AC 116 ms
90,664 KB
testcase_31 AC 123 ms
90,688 KB
testcase_32 AC 120 ms
90,496 KB
testcase_33 AC 122 ms
90,432 KB
testcase_34 AC 127 ms
89,708 KB
testcase_35 AC 117 ms
90,376 KB
testcase_36 AC 117 ms
90,668 KB
testcase_37 AC 116 ms
90,340 KB
testcase_38 AC 110 ms
90,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = 10**16
md = 998244353
# md = 10**9+7

mx = 20005

n = II()
aa = LI()

dp = [0]*mx
dp[0] = 1

for a in aa:
    ndp = [0]*mx
    for i in range(-10000, 10001):
        ndp[i+a] += dp[i]
        ndp[i-a] += dp[i]
    dp = ndp

ans = 0
for i in range(-10000, 10001):
    ans += abs(i*dp[i])
    ans %= md

print(ans)
0