結果

問題 No.1645 AB's abs
ユーザー hamihami
提出日時 2021-11-27 09:39:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 927 bytes
コンパイル時間 2,456 ms
コンパイル使用メモリ 172,832 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-06-30 01:25:35
合計ジャッジ時間 3,786 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 11 ms
13,312 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 5 ms
6,400 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 13 ms
16,256 KB
testcase_09 AC 13 ms
16,128 KB
testcase_10 AC 12 ms
14,848 KB
testcase_11 AC 12 ms
14,848 KB
testcase_12 AC 12 ms
15,232 KB
testcase_13 AC 31 ms
34,816 KB
testcase_14 AC 30 ms
33,024 KB
testcase_15 AC 31 ms
34,816 KB
testcase_16 AC 30 ms
33,536 KB
testcase_17 AC 31 ms
34,560 KB
testcase_18 AC 30 ms
33,280 KB
testcase_19 AC 31 ms
34,816 KB
testcase_20 AC 29 ms
32,256 KB
testcase_21 AC 30 ms
33,536 KB
testcase_22 AC 31 ms
34,688 KB
testcase_23 AC 32 ms
35,456 KB
testcase_24 AC 31 ms
35,456 KB
testcase_25 AC 32 ms
35,456 KB
testcase_26 AC 32 ms
35,456 KB
testcase_27 AC 32 ms
35,456 KB
testcase_28 AC 32 ms
35,456 KB
testcase_29 AC 33 ms
35,456 KB
testcase_30 AC 32 ms
35,456 KB
testcase_31 AC 32 ms
35,456 KB
testcase_32 AC 32 ms
35,456 KB
testcase_33 AC 32 ms
35,456 KB
testcase_34 AC 32 ms
35,456 KB
testcase_35 AC 33 ms
35,456 KB
testcase_36 AC 33 ms
35,456 KB
testcase_37 AC 33 ms
35,456 KB
testcase_38 AC 32 ms
35,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<iostream>
using namespace std;
using LL = long long;
using P = pair<int,int>;
using Graph = vector<vector<int>>;
const int INF = 1 << 29;
const long long LINF = 1LL << 60;
#define all(x) (x).begin(), (x).end()
#define rep(i,n) for(int i = 0; i < (n); ++i)
template<class T>void chmin(T&a, T b){if(a > b) a = b;}
template<class T>void chmax(T&a, T b){if(a < b) a = b;}

const long long M = 998244353;

int main(){
	int N; cin >> N;
	vector<int> A(N); 
	for(int i = 0; i < N; ++i) cin >> A[i];

	vector<vector<long long>> dp(N+1, vector<long long>(40000, 0));
	dp[0][20000] = 1;

	for(int i = 0; i < N; ++i){
		for(int j = 0; j < 40000; ++j){
			if(dp[i][j]>0){
				dp[i+1][j+A[i]] += dp[i][j]%M;
				dp[i+1][j-A[i]] += dp[i][j]%M;
			}
		}
	}

	long long ans = 0;
	for(int i = 0; i < 40000; ++i){
		if(dp[N][i]){
			ans += dp[N][i]*abs(i - 20000)%M;
			ans %= M;
		}
	}
	cout << ans << endl;
}

0