結果

問題 No.1876 Xor of Sum
ユーザー mkawa2mkawa2
提出日時 2024-06-17 17:29:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 899 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 259,004 KB
最終ジャッジ日時 2024-06-17 17:29:17
合計ジャッジ時間 11,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,488 KB
testcase_02 AC 38 ms
52,264 KB
testcase_03 AC 108 ms
81,740 KB
testcase_04 AC 261 ms
192,392 KB
testcase_05 AC 48 ms
62,896 KB
testcase_06 AC 423 ms
258,632 KB
testcase_07 AC 50 ms
65,692 KB
testcase_08 AC 48 ms
63,608 KB
testcase_09 AC 218 ms
160,264 KB
testcase_10 AC 91 ms
80,376 KB
testcase_11 AC 347 ms
258,548 KB
testcase_12 AC 100 ms
81,680 KB
testcase_13 AC 185 ms
132,912 KB
testcase_14 AC 124 ms
83,500 KB
testcase_15 AC 162 ms
110,588 KB
testcase_16 AC 47 ms
62,656 KB
testcase_17 AC 408 ms
258,408 KB
testcase_18 AC 417 ms
258,260 KB
testcase_19 AC 409 ms
258,632 KB
testcase_20 AC 418 ms
258,536 KB
testcase_21 AC 412 ms
258,520 KB
testcase_22 AC 419 ms
258,876 KB
testcase_23 AC 671 ms
259,004 KB
testcase_24 AC 663 ms
258,324 KB
testcase_25 AC 671 ms
258,532 KB
testcase_26 AC 689 ms
258,820 KB
testcase_27 AC 661 ms
258,404 KB
testcase_28 AC 672 ms
258,316 KB
testcase_29 AC 42 ms
60,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000006)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

n=II()
aa=LI()
s=1
for a in aa:s^=s<<a
ans=0
s=bin(s)[::-1]
i=s.find("1")
while i!=-1:
    ans^=i
    i=s.find("1",i+1)
print(ans)
0