結果

問題 No.1876 Xor of Sum
ユーザー ああいいああいい
提出日時 2022-03-13 21:54:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 259,200 KB
最終ジャッジ日時 2024-09-19 05:32:40
合計ジャッジ時間 9,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 106 ms
80,256 KB
testcase_04 AC 240 ms
189,568 KB
testcase_05 AC 48 ms
62,464 KB
testcase_06 AC 389 ms
258,688 KB
testcase_07 AC 50 ms
64,128 KB
testcase_08 AC 49 ms
62,336 KB
testcase_09 AC 202 ms
157,824 KB
testcase_10 AC 96 ms
78,976 KB
testcase_11 AC 322 ms
258,432 KB
testcase_12 AC 100 ms
80,128 KB
testcase_13 AC 173 ms
130,560 KB
testcase_14 AC 125 ms
81,664 KB
testcase_15 AC 157 ms
108,928 KB
testcase_16 AC 47 ms
60,928 KB
testcase_17 AC 350 ms
258,560 KB
testcase_18 AC 389 ms
258,816 KB
testcase_19 AC 379 ms
258,688 KB
testcase_20 AC 380 ms
258,432 KB
testcase_21 AC 386 ms
258,560 KB
testcase_22 AC 392 ms
258,560 KB
testcase_23 AC 620 ms
258,944 KB
testcase_24 AC 615 ms
259,200 KB
testcase_25 AC 640 ms
259,072 KB
testcase_26 AC 621 ms
258,688 KB
testcase_27 AC 626 ms
258,688 KB
testcase_28 AC 605 ms
259,072 KB
testcase_29 AC 45 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)
    dp = dp << a ^ dp
    S += a
ans = 0
mask = 1

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