結果
問題 | No.1444 !Andd |
ユーザー | iaNTU |
提出日時 | 2021-01-22 15:34:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 562 bytes |
コンパイル時間 | 2,380 ms |
コンパイル使用メモリ | 217,208 KB |
実行使用メモリ | 314,032 KB |
最終ジャッジ日時 | 2024-06-09 21:31:03 |
合計ジャッジ時間 | 5,855 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#pragma GCC optimize("O3") #include <bits/stdc++.h> using namespace std; #define PB push_back constexpr int kN = int(5E3 + 10); constexpr int kC = 1 << 10; int a[kN]; vector<int> dp[kN]; int main() { int n; scanf("%d", &n); for (int i = 1; i <= n; i++) scanf("%d", &a[i]); dp[0].PB(0); for (int i = 1; i <= n; i++) { for (int j : dp[i - 1]) dp[i].PB(j + a[i]); for (int j : dp[i - 1]) dp[i].PB(j & a[i]); sort(dp[i].begin(), dp[i].end()); dp[i].resize(unique(dp[i].begin(), dp[i].end()) - dp[i].begin()); } printf("%d\n", int(dp[n].size())); }