結果
問題 | No.1645 AB's abs |
ユーザー | maimaicorgi |
提出日時 | 2022-09-27 13:49:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 17 ms / 2,000 ms |
コード長 | 2,679 bytes |
コンパイル時間 | 1,374 ms |
コンパイル使用メモリ | 142,540 KB |
実行使用メモリ | 19,712 KB |
最終ジャッジ日時 | 2024-06-02 01:02:30 |
合計ジャッジ時間 | 2,747 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 6 ms
8,320 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 8 ms
9,728 KB |
testcase_09 | AC | 8 ms
9,728 KB |
testcase_10 | AC | 7 ms
9,088 KB |
testcase_11 | AC | 7 ms
9,088 KB |
testcase_12 | AC | 6 ms
9,344 KB |
testcase_13 | AC | 16 ms
19,200 KB |
testcase_14 | AC | 16 ms
18,304 KB |
testcase_15 | AC | 17 ms
19,200 KB |
testcase_16 | AC | 16 ms
18,560 KB |
testcase_17 | AC | 16 ms
19,072 KB |
testcase_18 | AC | 16 ms
18,432 KB |
testcase_19 | AC | 17 ms
19,200 KB |
testcase_20 | AC | 15 ms
17,920 KB |
testcase_21 | AC | 15 ms
18,432 KB |
testcase_22 | AC | 15 ms
19,072 KB |
testcase_23 | AC | 15 ms
19,584 KB |
testcase_24 | AC | 16 ms
19,584 KB |
testcase_25 | AC | 16 ms
19,712 KB |
testcase_26 | AC | 15 ms
19,584 KB |
testcase_27 | AC | 16 ms
19,584 KB |
testcase_28 | AC | 16 ms
19,584 KB |
testcase_29 | AC | 15 ms
19,584 KB |
testcase_30 | AC | 16 ms
19,584 KB |
testcase_31 | AC | 16 ms
19,584 KB |
testcase_32 | AC | 16 ms
19,584 KB |
testcase_33 | AC | 16 ms
19,584 KB |
testcase_34 | AC | 15 ms
19,584 KB |
testcase_35 | AC | 15 ms
19,584 KB |
testcase_36 | AC | 16 ms
19,712 KB |
testcase_37 | AC | 15 ms
19,584 KB |
testcase_38 | AC | 15 ms
19,584 KB |
ソースコード
#include <iostream> #include <iomanip> #include <string> #include <vector> #include <cmath> #include <cstdlib> #include <algorithm> #include <ios> #include <iomanip> #include <queue> #include <numeric> #include <map> #include <set> #include <sstream> #include <bitset> #include <climits> #include <stack> #include <regex> #include <functional> #include <random> #ifdef _WIN64 # include <atcoder/all> #endif #ifdef _MSC_VER # include <intrin.h> # define __builtin_popcount __popcnt # define __builtin_popcountl __popcnt64 #endif using namespace std; #define ll long long #define rep(i, init, n) for(ll i = init; i < (ll)n; i++) #define rrep(i, init, n) for(ll i = init; i >= (ll)n; i--) #define all(x) (x).begin(), (x).end() #define sz(x) (ll)(x.size()) #define Out(x) cout << x << endl #define Yes cout << "Yes" << endl #define No cout << "No" << endl #define Ans cout << ans << endl #define PI 3.14159265358979 #define MOD 998244353 const int inf32 = INT_MAX / 2; const ll inf64 = 1LL << 60; template<class T>bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (a > b) { a = b; return true; } return false; } // ------------------------------------------------------------------------------------------------- struct mint { ll x; mint(ll val = 0) { x = (val % MOD + MOD) % MOD; } mint operator-() const { return mint(-x); } mint& operator+=(const mint& other) { x += other.x; if (x >= MOD) x -= MOD; return *this; } mint& operator-=(const mint& other) { x -= other.x; if (x < 0) x += MOD; return *this; } mint& operator*=(const mint& other) { (x *= other.x) %= MOD; return *this; } mint& operator/=(const mint& other) { *this *= other.pow(MOD - 2); return *this; } mint operator+(const mint& other) const { return mint(*this) += other; } mint operator-(const mint& other) const { return mint(*this) -= other; } mint operator*(const mint& other) const { return mint(*this) *= other; } mint operator/(const mint& other) const { return mint(*this) /= other; } mint pow(ll i) const { mint ret = 1; for (mint tmp = x; i; tmp *= tmp, i >>= 1) if (i & 1) ret *= tmp; return ret; } friend ostream& operator<<(ostream& os, const mint& m) { os << m.x; return os; } }; int main() { int n; cin >> n; vector<int> a(n + 1); rep(i, 1, n + 1) cin >> a[i]; vector dp(n + 1, vector<mint>(20000 + 1)); dp[0][10000] = 1; rep(i, 1, n + 1)rep(j, 0, 20000 + 1) { if (j + a[i] <= 20000) dp[i][j + a[i]] += dp[i - 1][j]; if (j - a[i] >= 0) dp[i][j - a[i]] += dp[i - 1][j]; } mint ans = 0; rep(i, 0, 20000 + 1) ans += (mint)abs(i - 10000) * dp[n][i]; Ans; return 0; }