結果

問題 No.1876 Xor of Sum
ユーザー nephrologistnephrologist
提出日時 2022-03-24 13:50:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,062 bytes
コンパイル時間 1,003 ms
コンパイル使用メモリ 95,128 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 22:00:16
合計ジャッジ時間 8,476 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 138 ms
5,248 KB
testcase_04 AC 238 ms
5,248 KB
testcase_05 AC 31 ms
5,248 KB
testcase_06 AC 335 ms
5,248 KB
testcase_07 AC 35 ms
5,248 KB
testcase_08 AC 31 ms
5,248 KB
testcase_09 AC 219 ms
5,248 KB
testcase_10 AC 116 ms
5,248 KB
testcase_11 AC 279 ms
5,248 KB
testcase_12 AC 134 ms
5,248 KB
testcase_13 AC 199 ms
5,248 KB
testcase_14 AC 172 ms
5,248 KB
testcase_15 AC 189 ms
5,248 KB
testcase_16 AC 25 ms
5,248 KB
testcase_17 AC 296 ms
5,248 KB
testcase_18 AC 328 ms
5,248 KB
testcase_19 AC 330 ms
5,248 KB
testcase_20 AC 338 ms
5,248 KB
testcase_21 AC 333 ms
6,816 KB
testcase_22 AC 337 ms
6,820 KB
testcase_23 AC 334 ms
6,816 KB
testcase_24 AC 335 ms
6,816 KB
testcase_25 AC 335 ms
6,816 KB
testcase_26 AC 328 ms
6,816 KB
testcase_27 AC 338 ms
6,816 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <tuple>
#include <cstdint>
#include <cstdio> // printf
#include <map> // map
#include <queue> // queue, priority_queue
#include <set> // set
#include <stack> // stack
#include <deque> // deque
#include <unordered_map> // unordered_map
#include <unordered_set> // unordered_set
#include <bitset> // bitset
#include <iomanip> // setprecision
#include <numeric>
#include <cctype> // isupper, islower, isdigit, toupper, tolower
using namespace std;

int n;
int A[2020];

int main(){
    cin >> n;
    for (int i=0 ; i<n;i++){
        cin>>A[i];
    }
    bitset<4000000> B;
    B.set(0);
    for (int i=0 ; i<n;i++){
        // cout<<"count " <<B.count()<<endl;
        // bitset<4000000> BB;
        B^=(B<<A[i]);

    };
    // cout<<"count " <<B.count()<<endl;

    int ans=0;
    for (int i=0 ; i<n*2000+10;i++){
        // cout << i << endl;
        if (B[i]){
            // cout<< i <<endl;
            ans^=i;
        }

    }
    cout << ans <<endl;

}
0