結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー RubikunRubikun
提出日時 2019-06-17 03:42:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,597 ms / 5,000 ms
コード長 672 bytes
コンパイル時間 1,663 ms
コンパイル使用メモリ 169,236 KB
実行使用メモリ 163,516 KB
最終ジャッジ日時 2024-07-02 03:59:29
合計ジャッジ時間 18,719 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 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 2 ms
6,940 KB
testcase_07 AC 2,597 ms
145,224 KB
testcase_08 AC 2,109 ms
145,936 KB
testcase_09 AC 1,083 ms
100,808 KB
testcase_10 AC 1,478 ms
120,860 KB
testcase_11 AC 2,281 ms
157,984 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1,670 ms
163,516 KB
testcase_15 AC 2,370 ms
163,504 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 223 ms
38,628 KB
testcase_18 AC 2,322 ms
141,868 KB
testcase_19 AC 114 ms
20,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define all(x) (x).begin(),(x).end()
const int mod=1000000007;

int main(){

    int N;cin>>N;
    vector<int> S(N);
    for(int i=0;i<N;i++){
        cin>>S[i];
    }
    bool dp[1<<15][N+1];
    for(int i=0;i<(1<<15);i++){
        for(int j=0;j<N+1;j++){
            dp[i][j]=0;
        }
    }
    dp[0][0]=1;
    for(int j=0;j<N;j++){
        for(int i=0;i<(1<<15);i++){
            if(dp[i][j]==1){
                dp[i^S[j]][j+1]=1;
                dp[i][j+1]=1;
            }
        }
    }
    int cnt=0;
    for(int i=0;i<(1<<15);i++){
        if(dp[i][N]) cnt++;
    }
    cout<<cnt<<endl;
}
0