結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | d2verb |
提出日時 | 2015-05-06 10:06:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 899 bytes |
コンパイル時間 | 859 ms |
コンパイル使用メモリ | 91,324 KB |
実行使用メモリ | 17,408 KB |
最終ジャッジ日時 | 2024-07-05 19:14:24 |
合計ジャッジ時間 | 7,328 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 10 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 15 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <iostream> #include <sstream> #include <string> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <set> #include <map> #include <algorithm> #include <functional> #include <limits> #include <cstdio> #include <cstdlib> #include <cmath> #include <climits> #include <complex> using namespace std; #define INF (INT_MAX/3) #define PI (2*acos(0.0)) #define EPS (1e-8) typedef long long ll; typedef unsigned long long ull; map<pair<int, int>, int> e; int N, A[5001]; int solve(int x, int i){ if(e[pair<int, int>(x, i)] != 0) return 0; if(i == N){ e[pair<int, int>(x, i)]++; return 1; } return e[pair<int, int>(x, i)] = solve(x, i + 1) + solve(x ^ A[i], i + 1); } int main(){ ios_base::sync_with_stdio(0); cin >> N; for(int i = 0; i < N; i++) cin >> A[i]; cout << solve(0, 0) << endl; return 0; }