結果

問題 No.1876 Xor of Sum
ユーザー rlangevinrlangevin
提出日時 2023-11-07 23:42:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 720 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 258,944 KB
最終ジャッジ日時 2024-09-25 23:31:16
合計ジャッジ時間 10,815 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 120 ms
82,432 KB
testcase_04 AC 280 ms
193,280 KB
testcase_05 AC 61 ms
73,216 KB
testcase_06 AC 446 ms
258,304 KB
testcase_07 AC 68 ms
76,928 KB
testcase_08 AC 62 ms
73,600 KB
testcase_09 AC 260 ms
161,280 KB
testcase_10 AC 107 ms
80,896 KB
testcase_11 AC 374 ms
258,332 KB
testcase_12 AC 123 ms
82,304 KB
testcase_13 AC 216 ms
133,632 KB
testcase_14 AC 159 ms
84,352 KB
testcase_15 AC 188 ms
111,488 KB
testcase_16 AC 58 ms
70,016 KB
testcase_17 AC 401 ms
258,468 KB
testcase_18 AC 454 ms
258,688 KB
testcase_19 AC 448 ms
258,672 KB
testcase_20 AC 443 ms
258,432 KB
testcase_21 AC 452 ms
258,432 KB
testcase_22 AC 449 ms
258,848 KB
testcase_23 AC 716 ms
258,804 KB
testcase_24 AC 720 ms
258,908 KB
testcase_25 AC 711 ms
258,864 KB
testcase_26 AC 715 ms
258,688 KB
testcase_27 AC 712 ms
258,688 KB
testcase_28 AC 715 ms
258,944 KB
testcase_29 AC 55 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
now = 1
for a in A:
    now = (now << a) ^ now
    
ans = 0
now = bin(now)[2:]
for i, n in enumerate(now[::-1]):
    if n == "1":
        ans ^= i
        
print(ans)    
0