結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー sei0osei0o
提出日時 2017-10-17 11:08:00
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 770 bytes
コンパイル時間 862 ms
コンパイル使用メモリ 79,936 KB
実行使用メモリ 83,912 KB
最終ジャッジ日時 2023-08-11 07:35:33
合計ジャッジ時間 2,675 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 WA -
testcase_08 AC 105 ms
77,084 KB
testcase_09 AC 72 ms
52,692 KB
testcase_10 AC 87 ms
62,820 KB
testcase_11 AC 113 ms
81,228 KB
testcase_12 WA -
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 95 ms
81,856 KB
testcase_15 AC 117 ms
83,912 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 28 ms
21,728 KB
testcase_18 WA -
testcase_19 AC 15 ms
13,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <vector>
#include <cmath>
#include <algorithm>
#include <map>
#include <numeric>

using namespace std;
using ll = long long;
const ll INF = 1e9;
const ll MOD = 1e9 + 7;

bool dp[5010][16500]; // dp[i][k] = a[0] ~ a[i] までで k が作れるか

int main() {
    int N;
    cin >> N;
    ll a[N];
    for (int i = 0; i < N; i++) {
        cin >> a[i];
    }

    dp[0][0] = true;
    for (int i = 0; i < N; i++) {
        for (int k = 0; k < 16500; k++) {
            if (dp[i][k]) {
                dp[i+1][k ^ a[i]] = true;
                dp[i+1][k] = true;
            }
        }
    }

    int ans = 0;
    for (int i = 0; i < 16500; i++) {
        if (dp[N][i]) ans++;
    }
    cout << ans << endl;

    return 0;
}
0