結果

問題 No.1645 AB's abs
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-01-24 01:53:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 78,580 KB
最終ジャッジ日時 2024-09-28 06:56:14
合計ジャッジ時間 4,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,308 KB
testcase_01 AC 39 ms
52,160 KB
testcase_02 AC 60 ms
68,108 KB
testcase_03 AC 39 ms
53,056 KB
testcase_04 AC 39 ms
52,080 KB
testcase_05 AC 39 ms
52,900 KB
testcase_06 AC 40 ms
52,492 KB
testcase_07 AC 40 ms
53,352 KB
testcase_08 AC 65 ms
71,136 KB
testcase_09 AC 65 ms
72,136 KB
testcase_10 AC 61 ms
69,052 KB
testcase_11 AC 64 ms
70,208 KB
testcase_12 AC 63 ms
70,324 KB
testcase_13 AC 106 ms
75,956 KB
testcase_14 AC 91 ms
75,780 KB
testcase_15 AC 106 ms
75,776 KB
testcase_16 AC 103 ms
76,260 KB
testcase_17 AC 102 ms
75,740 KB
testcase_18 AC 99 ms
75,608 KB
testcase_19 AC 101 ms
75,884 KB
testcase_20 AC 94 ms
75,844 KB
testcase_21 AC 102 ms
75,792 KB
testcase_22 AC 106 ms
76,264 KB
testcase_23 AC 100 ms
75,900 KB
testcase_24 AC 102 ms
76,032 KB
testcase_25 AC 104 ms
76,024 KB
testcase_26 AC 100 ms
75,808 KB
testcase_27 AC 105 ms
75,932 KB
testcase_28 AC 103 ms
75,736 KB
testcase_29 AC 106 ms
75,940 KB
testcase_30 AC 111 ms
76,056 KB
testcase_31 AC 105 ms
75,596 KB
testcase_32 AC 107 ms
76,464 KB
testcase_33 AC 137 ms
78,580 KB
testcase_34 AC 133 ms
77,844 KB
testcase_35 AC 132 ms
78,300 KB
testcase_36 AC 131 ms
78,356 KB
testcase_37 AC 132 ms
78,460 KB
testcase_38 AC 48 ms
60,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1645

MOD = 998244353

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

    max_a = sum([abs(a) for a in A])

    dp = {0:1}
    for a in A:
        new_dp = {}
        for key, value in dp.items():
            if (key + a) not in new_dp:
                new_dp[key + a] = 0
            new_dp[key + a] += value
            new_dp[key + a] %= MOD

            if (key - a) not in new_dp:
                new_dp[key - a] = 0
            new_dp[key - a] += value
            new_dp[key - a] %= MOD
        dp = new_dp

    answer = 0    
    for key, value in dp.items():
        k = abs(key)
        answer += (k * value) % MOD
        answer %= MOD

    print(answer)


if __name__ == "__main__":
    main()
0