結果

問題 No.1876 Xor of Sum
ユーザー ああいいああいい
提出日時 2022-03-13 21:50:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,202 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 470,840 KB
最終ジャッジ日時 2024-09-19 05:29:19
合計ジャッジ時間 13,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 199 ms
174,672 KB
testcase_04 AC 331 ms
248,504 KB
testcase_05 AC 66 ms
82,048 KB
testcase_06 AC 490 ms
269,696 KB
testcase_07 AC 73 ms
88,960 KB
testcase_08 AC 69 ms
84,608 KB
testcase_09 AC 304 ms
234,780 KB
testcase_10 AC 146 ms
139,552 KB
testcase_11 AC 395 ms
270,720 KB
testcase_12 AC 202 ms
175,192 KB
testcase_13 AC 301 ms
231,560 KB
testcase_14 AC 236 ms
197,692 KB
testcase_15 AC 261 ms
198,012 KB
testcase_16 AC 63 ms
79,104 KB
testcase_17 AC 435 ms
260,608 KB
testcase_18 AC 484 ms
270,976 KB
testcase_19 AC 472 ms
273,536 KB
testcase_20 AC 468 ms
269,056 KB
testcase_21 AC 486 ms
276,480 KB
testcase_22 AC 495 ms
273,024 KB
testcase_23 AC 1,202 ms
439,876 KB
testcase_24 AC 1,160 ms
439,768 KB
testcase_25 AC 1,094 ms
440,304 KB
testcase_26 AC 1,083 ms
440,676 KB
testcase_27 AC 1,077 ms
440,080 KB
testcase_28 AC 1,122 ms
470,840 KB
testcase_29 AC 44 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
rr = sys.stdin

N = int(rr.readline())
A = list(map(int,rr.readline().split()))

dp = 1
S = 0
for a in A:
    dp ^= (dp << a)
    S += a
ans = 0
mask = 1

T = list(map(int,list(bin(dp)[2:])))
for i in range(1,S+1):
    if T[-1-i]:
        ans ^= i
print(ans)
0