結果

問題 No.1876 Xor of Sum
ユーザー titiatitia
提出日時 2022-03-14 00:54:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,270 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,560 KB
最終ジャッジ日時 2024-09-19 08:48:30
合計ジャッジ時間 16,183 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,368 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 26 ms
10,368 KB
testcase_03 AC 211 ms
12,416 KB
testcase_04 AC 387 ms
13,896 KB
testcase_05 AC 57 ms
10,752 KB
testcase_06 AC 628 ms
15,160 KB
testcase_07 AC 64 ms
10,752 KB
testcase_08 AC 58 ms
10,880 KB
testcase_09 AC 361 ms
13,840 KB
testcase_10 AC 171 ms
12,160 KB
testcase_11 AC 492 ms
14,804 KB
testcase_12 AC 202 ms
12,556 KB
testcase_13 AC 323 ms
13,556 KB
testcase_14 AC 260 ms
13,260 KB
testcase_15 AC 302 ms
13,296 KB
testcase_16 AC 53 ms
10,752 KB
testcase_17 AC 551 ms
14,964 KB
testcase_18 AC 628 ms
15,668 KB
testcase_19 AC 631 ms
14,872 KB
testcase_20 AC 623 ms
15,680 KB
testcase_21 AC 612 ms
15,580 KB
testcase_22 AC 639 ms
15,924 KB
testcase_23 AC 1,238 ms
19,384 KB
testcase_24 AC 1,264 ms
19,512 KB
testcase_25 AC 1,245 ms
19,228 KB
testcase_26 AC 1,246 ms
19,104 KB
testcase_27 AC 1,270 ms
19,560 KB
testcase_28 AC 1,058 ms
20,560 KB
testcase_29 AC 28 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 解説を読みました。自力で解きたい問題でした。

import sys
input = sys.stdin.readline

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

DP=1
for a in A:
    DP^=(DP<<a)

S=bin(DP)[2:][::-1]

ANS=0
for i in range(len(S)):
    if S[i]=="1":
        ANS^=i

print(ANS)
0