結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | lll |
提出日時 | 2018-04-08 22:58:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 186 ms / 5,000 ms |
コード長 | 798 bytes |
コンパイル時間 | 751 ms |
コンパイル使用メモリ | 92,180 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 05:46:30 |
合計ジャッジ時間 | 2,686 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 130 ms
6,940 KB |
testcase_08 | AC | 146 ms
6,940 KB |
testcase_09 | AC | 101 ms
6,940 KB |
testcase_10 | AC | 121 ms
6,940 KB |
testcase_11 | AC | 159 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 186 ms
6,944 KB |
testcase_15 | AC | 165 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 38 ms
6,940 KB |
testcase_18 | AC | 132 ms
6,940 KB |
testcase_19 | AC | 20 ms
6,944 KB |
ソースコード
#include <algorithm> #include <cmath> #include <cstring> #include <deque> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <string> #include <unordered_map> #include <vector> using namespace std; using ll = long long; int main() { cin.tie(0); ios::sync_with_stdio(false); int N; const int maxSize = 1 << 15; int dp[maxSize] = {}; cin >> N; dp[0] = true; for (int i = 0; i < N; i++) { int a; cin >> a; dp[a] = true; for (int j = 0; j < maxSize; j++) { if (dp[j]) { dp[a ^ j] = true; } } } int ans = 0; for (int i = 0; i < maxSize; i++) { if (dp[i]) ans++; } cout << ans << endl; return 0; }