結果

問題 No.1876 Xor of Sum
ユーザー 00 0000 00
提出日時 2022-05-03 17:31:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 2,683 ms
コンパイル使用メモリ 245,568 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 14:20:47
合計ジャッジ時間 10,515 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,248 KB
testcase_01 AC 7 ms
5,376 KB
testcase_02 AC 10 ms
5,376 KB
testcase_03 AC 148 ms
5,376 KB
testcase_04 AC 255 ms
5,376 KB
testcase_05 AC 36 ms
5,376 KB
testcase_06 AC 353 ms
5,376 KB
testcase_07 AC 42 ms
5,376 KB
testcase_08 AC 37 ms
5,376 KB
testcase_09 AC 237 ms
5,376 KB
testcase_10 AC 126 ms
5,376 KB
testcase_11 AC 299 ms
5,376 KB
testcase_12 AC 148 ms
5,376 KB
testcase_13 AC 217 ms
5,376 KB
testcase_14 AC 186 ms
5,376 KB
testcase_15 AC 205 ms
5,376 KB
testcase_16 AC 31 ms
5,376 KB
testcase_17 AC 326 ms
5,376 KB
testcase_18 AC 356 ms
5,376 KB
testcase_19 AC 356 ms
5,376 KB
testcase_20 AC 355 ms
5,376 KB
testcase_21 AC 357 ms
5,376 KB
testcase_22 AC 360 ms
5,376 KB
testcase_23 AC 355 ms
5,376 KB
testcase_24 AC 354 ms
5,376 KB
testcase_25 AC 352 ms
5,376 KB
testcase_26 AC 357 ms
5,376 KB
testcase_27 AC 359 ms
5,376 KB
testcase_28 WA -
testcase_29 AC 362 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int mxN = 4e6;
int main(){
    int n;
    cin >> n;
    bitset <mxN> dp;
    dp[0] = 1;
    for(int i = 0, a;i < n;i++){
        cin >> a;
        dp ^= (dp << a);
    }

    int ans = 0;
    for(int i = 0;i < mxN;i++)
        if(dp[i]) ans ^= i;

    cout << ans << "\n";

    return 0;
}
0