結果

問題 No.1645 AB's abs
ユーザー kotatsugamekotatsugame
提出日時 2021-08-13 21:29:42
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 68,000 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-03 17:16:15
合計ジャッジ時間 1,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 36
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N;
mint dp[10001];
main()
{
	cin>>N;
	dp[0]=1;
	int S=0;
	for(int i=0;i<N;i++)
	{
		int A;cin>>A;
		for(int j=S;j>=0;j--)dp[j+A]+=dp[j];
		S+=A;
	}
	mint ans=0;
	for(int i=0;i<=S;i++)
	{
		int now=S-2*i;
		if(now<0)now=-now;
		ans+=now*dp[i];
	}
	cout<<ans.val()<<endl;
}
0