結果

問題 No.1876 Xor of Sum
ユーザー ShirotsumeShirotsume
提出日時 2023-04-15 15:01:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 259,328 KB
最終ジャッジ日時 2024-10-11 01:48:20
合計ジャッジ時間 10,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,356 KB
testcase_01 AC 38 ms
52,528 KB
testcase_02 AC 39 ms
52,428 KB
testcase_03 AC 116 ms
82,372 KB
testcase_04 AC 263 ms
193,540 KB
testcase_05 AC 53 ms
74,752 KB
testcase_06 AC 423 ms
258,620 KB
testcase_07 AC 57 ms
76,720 KB
testcase_08 AC 53 ms
74,112 KB
testcase_09 AC 231 ms
161,408 KB
testcase_10 AC 99 ms
81,024 KB
testcase_11 AC 357 ms
258,560 KB
testcase_12 AC 109 ms
82,304 KB
testcase_13 AC 197 ms
134,124 KB
testcase_14 AC 141 ms
84,512 KB
testcase_15 AC 170 ms
111,684 KB
testcase_16 AC 50 ms
70,728 KB
testcase_17 AC 377 ms
258,800 KB
testcase_18 AC 434 ms
259,056 KB
testcase_19 AC 428 ms
258,848 KB
testcase_20 AC 426 ms
258,604 KB
testcase_21 AC 436 ms
258,508 KB
testcase_22 AC 443 ms
258,520 KB
testcase_23 AC 684 ms
258,960 KB
testcase_24 AC 697 ms
259,328 KB
testcase_25 AC 703 ms
259,040 KB
testcase_26 AC 700 ms
259,200 KB
testcase_27 AC 697 ms
259,124 KB
testcase_28 AC 689 ms
258,968 KB
testcase_29 AC 46 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
dp = 1

for i in a:
    dp ^= dp << i
dp = str(bin(dp))[2:][::-1]
ans = 0
for i, v in enumerate(dp):
    if v == '1':
        ans ^= i
print(ans)
0