結果

問題 No.1876 Xor of Sum
ユーザー 00 0000 00
提出日時 2022-05-03 17:32:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 2,821 ms
コンパイル使用メモリ 245,796 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 14:21:18
合計ジャッジ時間 11,082 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,248 KB
testcase_01 AC 10 ms
5,376 KB
testcase_02 AC 12 ms
5,376 KB
testcase_03 AC 163 ms
5,376 KB
testcase_04 AC 275 ms
5,376 KB
testcase_05 AC 41 ms
5,376 KB
testcase_06 AC 377 ms
5,376 KB
testcase_07 AC 44 ms
5,376 KB
testcase_08 AC 41 ms
5,376 KB
testcase_09 AC 245 ms
5,376 KB
testcase_10 AC 131 ms
5,376 KB
testcase_11 AC 310 ms
5,376 KB
testcase_12 AC 155 ms
5,376 KB
testcase_13 AC 226 ms
5,376 KB
testcase_14 AC 192 ms
5,376 KB
testcase_15 AC 212 ms
5,376 KB
testcase_16 AC 34 ms
5,376 KB
testcase_17 AC 336 ms
5,376 KB
testcase_18 AC 374 ms
5,376 KB
testcase_19 AC 377 ms
5,376 KB
testcase_20 AC 372 ms
5,376 KB
testcase_21 AC 373 ms
5,376 KB
testcase_22 AC 371 ms
5,376 KB
testcase_23 AC 375 ms
5,376 KB
testcase_24 AC 372 ms
5,376 KB
testcase_25 AC 376 ms
5,376 KB
testcase_26 AC 374 ms
5,376 KB
testcase_27 AC 373 ms
5,376 KB
testcase_28 AC 380 ms
5,376 KB
testcase_29 AC 382 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int mxN = 4e6 +5;
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