結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー otamay6otamay6
提出日時 2019-11-18 10:33:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 755 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 1,687 ms
コンパイル使用メモリ 172,680 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-07-02 18:06:40
合計ジャッジ時間 6,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 300 ms
21,376 KB
testcase_08 AC 487 ms
21,120 KB
testcase_09 AC 328 ms
15,616 KB
testcase_10 AC 395 ms
18,048 KB
testcase_11 AC 521 ms
22,656 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 755 ms
23,552 KB
testcase_15 AC 541 ms
23,552 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 122 ms
7,680 KB
testcase_18 AC 366 ms
20,736 KB
testcase_19 AC 60 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0,i##_len=(n);i<i##_len;++i)
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
#define All(x) (x).begin(),(x).end()
using namespace std;
typedef long long ll;

int main(){
    int N;cin>>N;
    vector<int> A(N);
    REP(i, N) cin >> A[i];
    vector<vector<bool>> dp(N+1,vector<bool>((1<<15),false));
    dp[0][0]=true;
    REP(i,N) REP(j,(1<<15)){
        dp[i+1][j] = dp[i][j]||dp[i][j^A[i]];
    }
    int ans=0;
    REP(i,1<<15) if(dp[N][i]){
        ans++;
    }
    cout<<ans<<endl;
}
0