結果

問題 No.1645 AB's abs
ユーザー zezerozezero
提出日時 2021-08-14 01:24:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 840 bytes
コンパイル時間 934 ms
コンパイル使用メモリ 102,560 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-04-14 22:54:37
合計ジャッジ時間 2,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
#include <queue>
#include <cmath>
using namespace std;
typedef long long ll;
#define rep(i, n) for (int i=0;i < (int)(n);i++)
const ll mod = 998244353;
int dp[110][20100];
int main(){
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i,n) cin >> a[i];
    dp[0][10001] = 1LL;
    for (int i = 0; i < n;i++){
        for (int j = 1; j <= 20000;j++){
            dp[i+1][min(20001,j+a[i])] += dp[i][j];
            dp[i+1][min(20001,j+a[i])] %= mod;
            dp[i+1][max(0,j-a[i])] += dp[i][j];
            dp[i+1][max(0,j-a[i])] %= mod;
        }
    }
    ll ans = 0;
    for (int i = 1; i <= 20000;i++){
        ans += abs(i-10001)*dp[n][i];
        ans %= mod;
    }
    cout << ans << endl;
    
    

    return 0;
}
0