結果
問題 | No.1645 AB's abs |
ユーザー | 👑 Nachia |
提出日時 | 2024-04-18 02:53:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 657 bytes |
コンパイル時間 | 933 ms |
コンパイル使用メモリ | 78,028 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 20:34:55 |
合計ジャッジ時間 | 2,051 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 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 | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; using i64 = long long; #define rep(i,n) for(int i=0; i<(n); i++) int main() { ios::sync_with_stdio(false); cin.tie(nullptr); const int MOD = 998244353; int N; cin >> N; vector<int> A(N); rep(i,N) cin >> A[i]; int S = 0; for(int a : A) S += a; vector<int> dp(S+1,0); dp[0] = 1; for(int a : A){ for(int k=S; k>=a; k--){ dp[k] += dp[k-a]; if(dp[k] >= MOD) dp[k] -= MOD; } } i64 ans = 0; rep(i,S+1) ans += dp[i] * abs(i-(S-i)) % MOD; ans %= MOD; cout << ans << endl; return 0; }