結果

問題 No.1645 AB's abs
ユーザー ntudantuda
提出日時 2021-08-15 01:08:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 80,272 KB
最終ジャッジ日時 2024-10-06 05:41:45
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,504 KB
testcase_01 AC 38 ms
52,340 KB
testcase_02 AC 64 ms
67,448 KB
testcase_03 AC 37 ms
52,300 KB
testcase_04 AC 37 ms
52,660 KB
testcase_05 AC 37 ms
52,632 KB
testcase_06 AC 38 ms
52,272 KB
testcase_07 AC 37 ms
52,488 KB
testcase_08 AC 54 ms
70,000 KB
testcase_09 AC 58 ms
70,532 KB
testcase_10 AC 54 ms
68,480 KB
testcase_11 AC 55 ms
68,236 KB
testcase_12 AC 57 ms
68,940 KB
testcase_13 AC 128 ms
77,280 KB
testcase_14 AC 113 ms
76,700 KB
testcase_15 AC 128 ms
77,716 KB
testcase_16 AC 124 ms
77,272 KB
testcase_17 AC 124 ms
77,484 KB
testcase_18 AC 121 ms
76,960 KB
testcase_19 AC 121 ms
77,492 KB
testcase_20 AC 117 ms
76,620 KB
testcase_21 AC 122 ms
76,772 KB
testcase_22 AC 124 ms
77,472 KB
testcase_23 AC 127 ms
77,332 KB
testcase_24 AC 130 ms
77,512 KB
testcase_25 AC 129 ms
77,284 KB
testcase_26 AC 127 ms
77,840 KB
testcase_27 AC 130 ms
77,476 KB
testcase_28 AC 127 ms
77,464 KB
testcase_29 AC 125 ms
76,916 KB
testcase_30 AC 131 ms
77,532 KB
testcase_31 AC 128 ms
77,480 KB
testcase_32 AC 128 ms
77,328 KB
testcase_33 AC 152 ms
80,272 KB
testcase_34 AC 152 ms
79,252 KB
testcase_35 AC 141 ms
79,612 KB
testcase_36 AC 141 ms
79,524 KB
testcase_37 AC 147 ms
79,240 KB
testcase_38 AC 52 ms
63,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

mod = 998244353
dic1 = {A[0]:1,-A[0]:1}
dic2 = {}
for i in range(1,N):
    for k,v in dic1.items():
        t = A[i] + k
        if t in dic2:
            dic2[t] += v
        else:
            dic2[t] = v
        t = - A[i] + k
        if t in dic2:
            dic2[t] += v
        else:
            dic2[t] = v
    dic1,dic2 = dic2,dic1
    dic2.clear()
ans = 0
for k,v in dic1.items():
    ans = (ans + v * abs(k)) % mod
print(ans)
0