結果

問題 No.1876 Xor of Sum
ユーザー ああいいああいい
提出日時 2022-03-13 21:56:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 608 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 258,944 KB
最終ジャッジ日時 2024-09-19 05:34:51
合計ジャッジ時間 8,988 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 88 ms
80,240 KB
testcase_04 AC 231 ms
189,576 KB
testcase_05 AC 42 ms
62,464 KB
testcase_06 AC 376 ms
258,432 KB
testcase_07 AC 44 ms
64,128 KB
testcase_08 AC 41 ms
62,848 KB
testcase_09 AC 187 ms
157,696 KB
testcase_10 AC 86 ms
79,572 KB
testcase_11 AC 301 ms
258,176 KB
testcase_12 AC 87 ms
80,256 KB
testcase_13 AC 160 ms
130,384 KB
testcase_14 AC 109 ms
81,920 KB
testcase_15 AC 139 ms
108,508 KB
testcase_16 AC 43 ms
61,568 KB
testcase_17 AC 333 ms
258,304 KB
testcase_18 AC 382 ms
258,560 KB
testcase_19 AC 375 ms
258,560 KB
testcase_20 AC 364 ms
258,908 KB
testcase_21 AC 379 ms
258,432 KB
testcase_22 AC 382 ms
258,560 KB
testcase_23 AC 602 ms
258,688 KB
testcase_24 AC 608 ms
258,944 KB
testcase_25 AC 604 ms
258,688 KB
testcase_26 AC 595 ms
258,892 KB
testcase_27 AC 597 ms
258,560 KB
testcase_28 AC 588 ms
258,816 KB
testcase_29 AC 38 ms
60,544 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,len(T)-2):
    if T[-1-i] == "1":
        ans ^= i
print(ans)
0