結果

問題 No.1876 Xor of Sum
ユーザー 👑 rin204rin204
提出日時 2022-03-13 21:48:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 643 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 259,072 KB
最終ジャッジ日時 2024-09-19 05:27:24
合計ジャッジ時間 9,387 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 103 ms
82,176 KB
testcase_04 AC 248 ms
194,048 KB
testcase_05 AC 49 ms
63,232 KB
testcase_06 AC 383 ms
258,432 KB
testcase_07 AC 51 ms
64,768 KB
testcase_08 AC 48 ms
62,848 KB
testcase_09 AC 205 ms
161,792 KB
testcase_10 AC 93 ms
81,280 KB
testcase_11 AC 316 ms
258,560 KB
testcase_12 AC 101 ms
82,304 KB
testcase_13 AC 184 ms
133,632 KB
testcase_14 AC 129 ms
84,480 KB
testcase_15 AC 158 ms
111,872 KB
testcase_16 AC 48 ms
61,824 KB
testcase_17 AC 340 ms
258,560 KB
testcase_18 AC 387 ms
258,816 KB
testcase_19 AC 385 ms
258,560 KB
testcase_20 AC 389 ms
258,560 KB
testcase_21 AC 403 ms
258,432 KB
testcase_22 AC 412 ms
258,560 KB
testcase_23 AC 643 ms
258,688 KB
testcase_24 AC 638 ms
259,072 KB
testcase_25 AC 631 ms
258,816 KB
testcase_26 AC 627 ms
258,944 KB
testcase_27 AC 634 ms
259,072 KB
testcase_28 AC 611 ms
258,816 KB
testcase_29 AC 43 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
bit = 1
for a in A:
    bit ^= bit << a

i = 1
ans = 0
bi = bin(bit)[2:][::-1]
l = len(bi)
for i in range(1, l):
    if bi[i] == "1":
        ans ^= i
print(ans)
0