結果

問題 No.1876 Xor of Sum
ユーザー nephrologistnephrologist
提出日時 2022-03-24 13:55:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 1,050 bytes
コンパイル時間 782 ms
コンパイル使用メモリ 95,116 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 22:06:10
合計ジャッジ時間 8,628 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 5 ms
5,248 KB
testcase_03 AC 149 ms
5,248 KB
testcase_04 AC 255 ms
5,248 KB
testcase_05 AC 32 ms
5,248 KB
testcase_06 AC 357 ms
5,248 KB
testcase_07 AC 39 ms
5,248 KB
testcase_08 AC 33 ms
5,248 KB
testcase_09 AC 236 ms
5,248 KB
testcase_10 AC 124 ms
5,248 KB
testcase_11 AC 300 ms
5,248 KB
testcase_12 AC 144 ms
5,248 KB
testcase_13 AC 217 ms
5,248 KB
testcase_14 AC 182 ms
5,248 KB
testcase_15 AC 203 ms
5,248 KB
testcase_16 AC 27 ms
5,248 KB
testcase_17 AC 325 ms
5,248 KB
testcase_18 AC 363 ms
5,248 KB
testcase_19 AC 361 ms
5,248 KB
testcase_20 AC 357 ms
5,248 KB
testcase_21 AC 358 ms
5,248 KB
testcase_22 AC 354 ms
5,248 KB
testcase_23 AC 361 ms
5,248 KB
testcase_24 AC 355 ms
5,248 KB
testcase_25 AC 359 ms
5,248 KB
testcase_26 AC 361 ms
5,248 KB
testcase_27 AC 357 ms
5,248 KB
testcase_28 AC 361 ms
5,248 KB
testcase_29 AC 360 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

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];
        // A[i]=1;
    }
    bitset<4004000> B;
    B.set(0);
    for (int i=0 ; i<n;i++){
        // cout<<"count " <<B.count()<<endl;
        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