結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | tetsuzuki1115 |
提出日時 | 2017-10-14 18:34:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 854 bytes |
コンパイル時間 | 663 ms |
コンパイル使用メモリ | 83,680 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 14:46:59 |
合計ジャッジ時間 | 3,086 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | RE | - |
testcase_08 | AC | 174 ms
5,248 KB |
testcase_09 | AC | 117 ms
5,248 KB |
testcase_10 | AC | 140 ms
5,248 KB |
testcase_11 | AC | 186 ms
5,248 KB |
testcase_12 | RE | - |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 64 ms
5,248 KB |
testcase_15 | AC | 203 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 43 ms
5,248 KB |
testcase_18 | RE | - |
testcase_19 | AC | 22 ms
5,248 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <cstring> #include <math.h> #include <cmath> #include <limits.h> #include <map> #include <set> #include <queue> #include <algorithm> #include <functional> #include <stdio.h> using namespace std; long long MOD = 1000000007; int main() { int N; cin >> N; vector<int> A(N); int dp[(1<<14)+1] = {0}; for ( int i = 0; i < N; i++ ) { cin >> A[i]; } dp[0] = 1; for ( int i = 0; i < N; i++ ) { vector<int> x; for ( int j = 0; j <= (1<<14); j++ ) { if ( dp[j] ) { x.push_back( j ^ A[i] ); } } for ( auto& a : x ) { dp[a] = 1; } } int ans = 0; for ( int j = 0; j <= (1<<14); j++ ) { if ( dp[j] ) { ans++; } } cout << ans << endl; return 0; }