結果

問題 No.1876 Xor of Sum
ユーザー ああいいああいい
提出日時 2022-03-13 21:47:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 690 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 258,944 KB
最終ジャッジ日時 2024-09-19 05:26:17
合計ジャッジ時間 9,607 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 98 ms
80,256 KB
testcase_04 AC 248 ms
189,696 KB
testcase_05 AC 53 ms
62,208 KB
testcase_06 AC 393 ms
258,176 KB
testcase_07 AC 55 ms
64,128 KB
testcase_08 AC 52 ms
62,464 KB
testcase_09 AC 204 ms
157,952 KB
testcase_10 AC 98 ms
79,104 KB
testcase_11 AC 328 ms
258,048 KB
testcase_12 AC 105 ms
80,128 KB
testcase_13 AC 176 ms
130,432 KB
testcase_14 AC 115 ms
81,664 KB
testcase_15 AC 149 ms
108,416 KB
testcase_16 AC 48 ms
61,056 KB
testcase_17 AC 358 ms
258,432 KB
testcase_18 AC 396 ms
258,432 KB
testcase_19 AC 384 ms
258,560 KB
testcase_20 AC 376 ms
258,560 KB
testcase_21 AC 382 ms
258,176 KB
testcase_22 AC 391 ms
258,176 KB
testcase_23 AC 612 ms
258,560 KB
testcase_24 AC 690 ms
258,944 KB
testcase_25 AC 606 ms
258,432 KB
testcase_26 AC 608 ms
258,688 KB
testcase_27 AC 639 ms
258,944 KB
testcase_28 AC 601 ms
258,688 KB
testcase_29 AC 47 ms
60,160 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 = bin(dp)
for i in range(1,S+1):
    if T[-1-i] == "1":
        ans ^= i
print(ans)
0