結果

問題 No.1876 Xor of Sum
ユーザー tnakao0123tnakao0123
提出日時 2022-03-18 11:23:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 58,232 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 14:19:47
合計ジャッジ時間 10,211 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,248 KB
testcase_01 AC 7 ms
5,248 KB
testcase_02 AC 10 ms
5,248 KB
testcase_03 AC 192 ms
5,248 KB
testcase_04 AC 352 ms
5,248 KB
testcase_05 AC 45 ms
5,248 KB
testcase_06 AC 443 ms
5,248 KB
testcase_07 AC 53 ms
5,248 KB
testcase_08 AC 46 ms
5,248 KB
testcase_09 AC 295 ms
5,248 KB
testcase_10 AC 165 ms
5,248 KB
testcase_11 AC 369 ms
5,248 KB
testcase_12 AC 181 ms
5,248 KB
testcase_13 AC 279 ms
5,248 KB
testcase_14 AC 227 ms
5,248 KB
testcase_15 AC 255 ms
5,248 KB
testcase_16 AC 37 ms
5,248 KB
testcase_17 AC 394 ms
5,248 KB
testcase_18 AC 442 ms
5,248 KB
testcase_19 AC 454 ms
5,248 KB
testcase_20 AC 451 ms
5,248 KB
testcase_21 AC 460 ms
5,248 KB
testcase_22 AC 440 ms
5,248 KB
testcase_23 AC 449 ms
5,248 KB
testcase_24 AC 452 ms
5,248 KB
testcase_25 AC 447 ms
5,248 KB
testcase_26 AC 452 ms
5,248 KB
testcase_27 AC 448 ms
5,248 KB
testcase_28 AC 467 ms
5,248 KB
testcase_29 AC 456 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1876.cc:  No.1876 Xor of Sum - yukicoder
 */

#include<cstdio>
#include<bitset>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 2000;
const int MAX_A = 2000;
const int MAX_M = MAX_N * MAX_A;

/* typedef */

/* global variables */

int as[MAX_N];
bitset<MAX_M+1> dp[2];

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) scanf("%d", as + i);

  int cur = 0, nxt = 1;
  dp[cur].set(0);

  for (int i = 0; i < n; i++) {
    dp[nxt] = dp[cur] ^ (dp[cur] << as[i]);
    swap(cur, nxt);
  }

  int sum = 0;
  for (int i = 0; i <= MAX_M; i++)
    sum ^= i * dp[cur].test(i);
  printf("%d\n", sum);
  return 0;
}
0