結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー glretoglreto
提出日時 2020-11-13 20:29:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 866 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 170,260 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-22 20:20:52
合計ジャッジ時間 3,481 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 117 ms
6,944 KB
testcase_08 AC 117 ms
6,944 KB
testcase_09 AC 81 ms
6,940 KB
testcase_10 AC 98 ms
6,944 KB
testcase_11 AC 126 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 130 ms
6,944 KB
testcase_15 AC 133 ms
6,944 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 32 ms
6,944 KB
testcase_18 AC 112 ms
6,940 KB
testcase_19 AC 16 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits//stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define req(i,n) for(int i = 1;i <=  n; i++)
#define rrep(i,n) for(ll i = n-1;i >= 0;i--)
#define ALL(obj) begin(obj), end(obj)
#define RALL(a) rbegin(a),rend(a)
typedef long long int ll;
typedef long double ld;
const int MAX = 510000;
const ll MOD = 1000000007;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
const ll INF = 1e18;
int main(){
    int n;cin >>n;
    vector<int> a(n);vector<int> dp(2e5,0);
    dp[0] = 1;
    rep(i,n) cin >>a[i];
    rep(i,n){
        rep(j,1<<15){
            chmax(dp[j^a[i]],dp[j]);
        }
    }int cnt = 0;
    rep(i,1<<15) if(dp[i])cnt++;
    cout << cnt << endl;
}
0