結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー nu50218nu50218
提出日時 2019-09-02 21:27:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 273 ms / 5,000 ms
コード長 672 bytes
コンパイル時間 1,677 ms
コンパイル使用メモリ 165,440 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 16:05:15
合計ジャッジ時間 4,649 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 264 ms
5,376 KB
testcase_08 AC 239 ms
5,376 KB
testcase_09 AC 164 ms
5,376 KB
testcase_10 AC 203 ms
5,376 KB
testcase_11 AC 265 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 246 ms
5,376 KB
testcase_15 AC 273 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 62 ms
5,376 KB
testcase_18 AC 247 ms
5,376 KB
testcase_19 AC 30 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

constexpr int MAX_A = (1 << 16);

int main() {
    int N;
    cin >> N;
    bool DP[MAX_A + 1] = {};
    DP[0] = true;
    for (int i = 0; i < N; ++i) {
        int A;
        cin >> A;
        bool DP2[MAX_A + 1] = {};
        for (int j = 0; j <= MAX_A; ++j) {
            DP2[j] = DP[j];
        }
        for (int j = 0; j <= MAX_A; ++j) {
            if (DP[j]) {
                DP2[j ^ A] = true;
            }
        }
        for (int j = 0; j <= MAX_A; ++j) {
            DP[j] = DP2[j];
        }
    }
    int ans = 0;
    for (int i = 0; i <= MAX_A; ++i) {
        ans += DP[i];
    }
    cout << ans << endl;
}
0