結果

問題 No.1876 Xor of Sum
ユーザー kept1994kept1994
提出日時 2022-04-24 01:36:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 701 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 262,912 KB
最終ジャッジ日時 2024-06-25 10:48:01
合計ジャッジ時間 10,675 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 115 ms
81,408 KB
testcase_04 AC 277 ms
191,080 KB
testcase_05 AC 54 ms
68,480 KB
testcase_06 AC 421 ms
258,688 KB
testcase_07 AC 54 ms
72,320 KB
testcase_08 AC 52 ms
68,480 KB
testcase_09 AC 230 ms
158,720 KB
testcase_10 AC 98 ms
80,000 KB
testcase_11 AC 356 ms
258,432 KB
testcase_12 AC 113 ms
81,516 KB
testcase_13 AC 210 ms
131,584 KB
testcase_14 AC 137 ms
82,856 KB
testcase_15 AC 175 ms
109,568 KB
testcase_16 AC 50 ms
67,584 KB
testcase_17 AC 379 ms
258,792 KB
testcase_18 AC 426 ms
258,816 KB
testcase_19 AC 420 ms
259,072 KB
testcase_20 AC 420 ms
258,304 KB
testcase_21 AC 423 ms
258,304 KB
testcase_22 AC 436 ms
258,304 KB
testcase_23 AC 695 ms
262,272 KB
testcase_24 AC 697 ms
258,816 KB
testcase_25 AC 701 ms
262,912 KB
testcase_26 AC 700 ms
262,912 KB
testcase_27 AC 685 ms
259,608 KB
testcase_28 AC 663 ms
258,516 KB
testcase_29 AC 49 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N = int(input())
    A = list(map(int, input().split()))
    dp = 1 # 和がkのものが何個あるか (mod2) -> 最初は和0が1個のみ
    for aa in A:
        dp ^= (dp << aa)
        # print(bin(dp))
    ans = 0
    d = str(bin(dp))[2:]
    for i in range(len(d)):
        if int(d[i]):
            ans ^= i
            # print(ans)
    print(ans)


if __name__ == '__main__':
    main()
0