結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | ssssskkkkk |
提出日時 | 2017-11-28 15:23:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 854 bytes |
コンパイル時間 | 685 ms |
コンパイル使用メモリ | 78,544 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-05-05 14:53:27 |
合計ジャッジ時間 | 7,262 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 5 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 <stdlib.h> #include <iostream> #include <vector> #include <set> #include <string> #include <algorithm> #define rep(i,n) for(int i=0;i<n;i++) #define srep(i,a,n) for(int i=a;i<n;i++) #define REP(i,n) for(int i=0;i<=n;i++) #define SREP(i,a,n) for(int i=a;i<=n;i++) #define rrep(i,n) for(int i=n-1;i>=0;i--) #define RREP(i,n) for(int i=n;i>=0;i--) #define scan(x) cin >> x #define print(x) cout << x << endl #define fastcin {\ cin.tie(0);\ ios::sync_with_stdio(false);\ } using namespace std; typedef long long ll; typedef set<int> si; typedef vector<bool> vb; typedef vector<vector<bool>> vvb; /* Coding Space */ int max_num; int N; int A[5001]; set<int> dp; int main(void) { fastcin; scan(N); SREP(n, 1, N) scan(A[n]); dp.insert(0); SREP(n, 1, N) { for (auto d : dp) { dp.insert(d ^ A[n]); } } print(dp.size()); return 0; }