結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー roiti46roiti46
提出日時 2015-04-21 00:30:40
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 54,780 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 18:58:04
合計ジャッジ時間 3,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 372 ms
5,376 KB
testcase_08 AC 350 ms
5,376 KB
testcase_09 AC 235 ms
5,376 KB
testcase_10 AC 282 ms
5,376 KB
testcase_11 AC 372 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 360 ms
5,376 KB
testcase_15 AC 392 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 88 ms
5,376 KB
testcase_18 AC 358 ms
5,376 KB
testcase_19 AC 44 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int dp[1 << 16];

int main(void){
    int N, a;
    cin >> N;
    for (int i = 0; i < N; i++) {
        cin >> a;
        for (int j = 0; j < (1 << 16); j++) {
            if (dp[j]) dp[j ^ a] = 1;
        }
        dp[a] = 1;
    }

    int ans = 0;
    for (int i = 0; i < (1 << 16); i++) ans += dp[i];
    cout << ans << endl;
    
    return 0;
}
0