結果
問題 | No.1443 Andd |
ユーザー | SSRS |
提出日時 | 2021-03-26 21:58:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 756 bytes |
コンパイル時間 | 2,008 ms |
コンパイル使用メモリ | 177,792 KB |
実行使用メモリ | 468,608 KB |
最終ジャッジ日時 | 2024-11-28 23:06:09 |
合計ジャッジ時間 | 23,041 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
452,260 KB |
testcase_02 | AC | 2 ms
10,496 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
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 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N; cin >> N; vector<int> A(N); for (int i = 0; i < N; i++){ cin >> A[i]; } vector<vector<bool>> dp(N + 1, vector<bool>(1 << 10, false)); dp[0][0] = true; for (int i = 0; i < N; i++){ for (int j = 0; j < (1 << 10); j++){ if (dp[i][j]){ dp[i + 1][(j + A[i]) % (1 << 10)] = true; dp[i + 1][j & A[i]] = true; } } } long long sum = 0; for (int i = 0; i < N; i++){ sum += A[i]; } set<int> st; for (int i = 0; i <= N; i++){ for (int j = 0; j < (1 << 10); j++){ if (dp[i][j]){ st.insert(sum + j); } } if (i < N){ sum -= A[i]; } if (i > 0){ cout << st.size() << endl; } } }