結果

問題 No.1876 Xor of Sum
ユーザー ytqm3ytqm3
提出日時 2022-03-10 14:01:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 202,780 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-17 02:18:30
合計ジャッジ時間 10,634 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
5,248 KB
testcase_01 AC 8 ms
5,376 KB
testcase_02 AC 10 ms
5,376 KB
testcase_03 AC 157 ms
5,376 KB
testcase_04 AC 266 ms
5,376 KB
testcase_05 AC 37 ms
5,376 KB
testcase_06 AC 370 ms
5,376 KB
testcase_07 AC 43 ms
5,376 KB
testcase_08 AC 38 ms
5,376 KB
testcase_09 AC 247 ms
5,376 KB
testcase_10 AC 133 ms
5,376 KB
testcase_11 AC 313 ms
5,376 KB
testcase_12 AC 156 ms
5,376 KB
testcase_13 AC 230 ms
5,376 KB
testcase_14 AC 192 ms
5,376 KB
testcase_15 AC 213 ms
5,376 KB
testcase_16 AC 33 ms
5,376 KB
testcase_17 AC 338 ms
5,376 KB
testcase_18 AC 374 ms
5,376 KB
testcase_19 AC 378 ms
5,376 KB
testcase_20 AC 373 ms
5,376 KB
testcase_21 AC 372 ms
5,376 KB
testcase_22 AC 377 ms
5,376 KB
testcase_23 AC 377 ms
5,376 KB
testcase_24 AC 377 ms
5,376 KB
testcase_25 AC 376 ms
5,376 KB
testcase_26 AC 377 ms
5,376 KB
testcase_27 AC 371 ms
5,376 KB
testcase_28 AC 380 ms
5,376 KB
testcase_29 AC 374 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  int N;
  cin>>N;
  bitset<4000005> dp(1);
  for(int i=0;i<N;++i){
    int t;
    cin>>t;
    dp^=(dp<<t);
  }
  int ans=0;
  for(int i=0;i<=4000000;++i){
    if(dp[i]){
      ans^=i;
    }
  }
  cout<<ans<<endl;
}
0