結果

問題 No.1876 Xor of Sum
ユーザー nephrologistnephrologist
提出日時 2022-03-24 14:00:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 668 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 258,816 KB
最終ジャッジ日時 2024-10-12 22:12:25
合計ジャッジ時間 9,894 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 104 ms
80,896 KB
testcase_04 AC 245 ms
191,104 KB
testcase_05 AC 48 ms
62,208 KB
testcase_06 AC 400 ms
258,048 KB
testcase_07 AC 50 ms
64,128 KB
testcase_08 AC 49 ms
62,592 KB
testcase_09 AC 212 ms
158,848 KB
testcase_10 AC 88 ms
79,872 KB
testcase_11 AC 334 ms
258,176 KB
testcase_12 AC 102 ms
80,896 KB
testcase_13 AC 184 ms
131,456 KB
testcase_14 AC 123 ms
82,432 KB
testcase_15 AC 157 ms
109,756 KB
testcase_16 AC 46 ms
61,184 KB
testcase_17 AC 361 ms
257,920 KB
testcase_18 AC 414 ms
258,176 KB
testcase_19 AC 411 ms
258,176 KB
testcase_20 AC 410 ms
258,048 KB
testcase_21 AC 413 ms
257,792 KB
testcase_22 AC 421 ms
258,304 KB
testcase_23 AC 663 ms
258,688 KB
testcase_24 AC 657 ms
258,688 KB
testcase_25 AC 668 ms
258,560 KB
testcase_26 AC 665 ms
258,816 KB
testcase_27 AC 663 ms
258,432 KB
testcase_28 AC 643 ms
258,560 KB
testcase_29 AC 46 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

n = int(input())
A = list(map(int, input().split()))

temp = 1

for a in A:
    nx = temp << a
    # print("temp", bin(temp), "nx", bin(nx))
    temp ^= nx

# ans = 0
# keta = 0
# while temp:
#     if temp % 2:
#         ans ^= keta
#     temp //= 2
#     keta += 1
binary = bin(temp)[2:]
ans = 0
for i in range(len(binary)):
    if binary[len(binary) - i - 1] == "1":
        ans ^= i

print(ans)
0