結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-08 12:49:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 3,047 ms
コンパイル使用メモリ 200,816 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 15:48:11
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 131 ms
5,376 KB
testcase_08 AC 123 ms
5,376 KB
testcase_09 AC 85 ms
5,376 KB
testcase_10 AC 103 ms
5,376 KB
testcase_11 AC 135 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 128 ms
5,376 KB
testcase_15 AC 139 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 33 ms
5,376 KB
testcase_18 AC 124 ms
5,376 KB
testcase_19 AC 17 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int n;
    cin>>n;
    bool dp[1<<15]{};
    dp[0]=true;
    for (int i=0;i<n;i++) {
        int a;
        cin>>a;
        for (int i=0;i<1<<15;i++) {
            if (dp[i]) dp[i^a]=true;
        }
    }
    int ans=0;
    for (int i=0;i<1<<15;i++) ans+=dp[i];
    cout<<ans<<endl;
    return 0;
}
0