結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 34 ms
51,456 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 91 ms
79,980 KB
testcase_04 AC 236 ms
189,568 KB
testcase_05 AC 44 ms
62,592 KB
testcase_06 AC 382 ms
257,920 KB
testcase_07 AC 44 ms
63,616 KB
testcase_08 AC 43 ms
62,592 KB
testcase_09 AC 195 ms
158,092 KB
testcase_10 AC 77 ms
79,232 KB
testcase_11 AC 312 ms
258,560 KB
testcase_12 AC 90 ms
80,344 KB
testcase_13 AC 168 ms
130,688 KB
testcase_14 AC 108 ms
81,152 KB
testcase_15 AC 144 ms
108,548 KB
testcase_16 AC 41 ms
60,672 KB
testcase_17 AC 338 ms
258,176 KB
testcase_18 AC 393 ms
258,688 KB
testcase_19 AC 382 ms
258,432 KB
testcase_20 AC 379 ms
258,432 KB
testcase_21 AC 386 ms
258,432 KB
testcase_22 AC 392 ms
258,592 KB
testcase_23 AC 626 ms
258,560 KB
testcase_24 AC 634 ms
258,944 KB
testcase_25 AC 624 ms
258,572 KB
testcase_26 AC 627 ms
258,560 KB
testcase_27 AC 634 ms
258,816 KB
testcase_28 AC 613 ms
258,940 KB
testcase_29 AC 39 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = 1
for i in range(n):
    dp ^= dp << A[i]

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