結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー RubikunRubikun
提出日時 2020-06-27 16:29:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 211 ms / 5,000 ms
コード長 566 bytes
コンパイル時間 1,468 ms
コンパイル使用メモリ 167,704 KB
実行使用メモリ 137,984 KB
最終ジャッジ日時 2024-07-05 17:25:00
合計ジャッジ時間 4,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 184 ms
137,984 KB
testcase_08 AC 164 ms
92,416 KB
testcase_09 AC 114 ms
64,512 KB
testcase_10 AC 138 ms
76,928 KB
testcase_11 AC 211 ms
99,968 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 164 ms
23,552 KB
testcase_15 AC 187 ms
103,296 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 44 ms
25,344 KB
testcase_18 AC 169 ms
115,968 KB
testcase_19 AC 24 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

bool dp[5003][1<<15];

int main(){

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