結果
問題 | No.1645 AB's abs |
ユーザー | ぷら |
提出日時 | 2021-08-13 21:27:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 608 bytes |
コンパイル時間 | 1,907 ms |
コンパイル使用メモリ | 202,120 KB |
実行使用メモリ | 19,028 KB |
最終ジャッジ日時 | 2024-10-03 17:09:22 |
合計ジャッジ時間 | 3,021 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 3 ms
7,680 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 3 ms
9,680 KB |
testcase_09 | AC | 3 ms
9,676 KB |
testcase_10 | AC | 3 ms
9,740 KB |
testcase_11 | AC | 3 ms
7,732 KB |
testcase_12 | AC | 4 ms
7,716 KB |
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 <bits/stdc++.h> using namespace std; constexpr int mod = 998244353; long long dp[105][20005]; int main() { int N; cin >> N; vector<int>A(N); dp[0][10000] = 1; for(int i = 0; i < N; i++) { cin >> A[i]; for(int j = 0; j <= 20000; j++) { if(dp[i][j] == 0) { continue; } dp[i+1][j+A[i]] += dp[i][j]; dp[i+1][j-A[i]] += dp[i][j]; } } long long ans = 0; for(int i = 0; i <= 20000; i++) { ans += abs(i-10000)*dp[N][i]%mod; ans %= mod; } cout << ans << endl; }