結果

問題 No.1876 Xor of Sum
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-19 15:14:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 258,968 KB
最終ジャッジ日時 2024-10-04 15:56:54
合計ジャッジ時間 8,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 32 ms
51,840 KB
testcase_03 AC 84 ms
80,196 KB
testcase_04 AC 209 ms
190,336 KB
testcase_05 AC 41 ms
62,720 KB
testcase_06 AC 355 ms
258,432 KB
testcase_07 AC 41 ms
64,384 KB
testcase_08 AC 41 ms
62,464 KB
testcase_09 AC 178 ms
158,208 KB
testcase_10 AC 73 ms
79,104 KB
testcase_11 AC 289 ms
258,560 KB
testcase_12 AC 89 ms
80,512 KB
testcase_13 AC 153 ms
130,944 KB
testcase_14 AC 99 ms
81,572 KB
testcase_15 AC 129 ms
108,660 KB
testcase_16 AC 41 ms
61,312 KB
testcase_17 AC 306 ms
258,664 KB
testcase_18 AC 351 ms
258,560 KB
testcase_19 AC 351 ms
258,856 KB
testcase_20 AC 347 ms
258,740 KB
testcase_21 AC 361 ms
258,304 KB
testcase_22 AC 354 ms
258,816 KB
testcase_23 AC 580 ms
258,844 KB
testcase_24 AC 586 ms
258,968 KB
testcase_25 AC 584 ms
258,688 KB
testcase_26 AC 575 ms
258,816 KB
testcase_27 AC 581 ms
258,560 KB
testcase_28 AC 569 ms
258,816 KB
testcase_29 AC 39 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
N = max(A)*n+1
dp = 1
for a in A:
    dp ^= dp<<a

ans = 0
b = bin(dp)
l = len(b)
for i in range(2, l):
    if b[i] == '1':
        ans ^= i-2
print(ans)
0