結果

問題 No.1876 Xor of Sum
ユーザー HentciHentci
提出日時 2022-04-27 14:47:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 3,271 ms
コンパイル使用メモリ 245,444 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 07:45:13
合計ジャッジ時間 11,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,248 KB
testcase_01 AC 11 ms
5,376 KB
testcase_02 AC 12 ms
5,376 KB
testcase_03 AC 158 ms
5,376 KB
testcase_04 AC 270 ms
5,376 KB
testcase_05 AC 40 ms
5,376 KB
testcase_06 AC 369 ms
5,376 KB
testcase_07 AC 46 ms
5,376 KB
testcase_08 AC 41 ms
5,376 KB
testcase_09 AC 253 ms
5,376 KB
testcase_10 AC 136 ms
5,376 KB
testcase_11 AC 318 ms
5,376 KB
testcase_12 AC 158 ms
5,376 KB
testcase_13 AC 230 ms
5,376 KB
testcase_14 AC 193 ms
5,376 KB
testcase_15 AC 214 ms
5,376 KB
testcase_16 AC 35 ms
5,376 KB
testcase_17 AC 336 ms
5,376 KB
testcase_18 AC 376 ms
5,376 KB
testcase_19 AC 378 ms
5,376 KB
testcase_20 AC 378 ms
5,376 KB
testcase_21 AC 379 ms
5,376 KB
testcase_22 AC 374 ms
5,376 KB
testcase_23 AC 378 ms
5,376 KB
testcase_24 AC 373 ms
5,376 KB
testcase_25 AC 374 ms
5,376 KB
testcase_26 AC 379 ms
5,376 KB
testcase_27 AC 372 ms
5,376 KB
testcase_28 AC 378 ms
5,376 KB
testcase_29 AC 374 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) x.begin(),x.end()
#define ar array
#define sz(x) ((int)x.size())
template <class T,class S> inline bool chmin(T &a,const S &b) {return (a> b? a= b, 1: 0);}
template <class T,class S> inline bool chmax(T &a,const S &b) {return (a< b? a= b, 1: 0);}
const int mxN = 2000 * 2000 + 5;
int main(){
    ios_base::sync_with_stdio(false),cin.tie(0);
    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 = 1;i <= mxN;i++)
        if(dp[i]) ans ^= i;

    cout << ans << "\n";

    return 0;
}
0