結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-02-25 00:03:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,640 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 259,564 KB
最終ジャッジ日時 2024-09-29 10:25:44
合計ジャッジ時間 19,048 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,740 KB
testcase_01 AC 46 ms
55,296 KB
testcase_02 AC 49 ms
63,572 KB
testcase_03 AC 49 ms
63,516 KB
testcase_04 AC 45 ms
55,512 KB
testcase_05 AC 51 ms
66,196 KB
testcase_06 AC 46 ms
56,304 KB
testcase_07 AC 3,640 ms
259,564 KB
testcase_08 AC 2,080 ms
194,176 KB
testcase_09 AC 1,453 ms
171,888 KB
testcase_10 AC 1,734 ms
182,312 KB
testcase_11 AC 2,263 ms
200,404 KB
testcase_12 AC 53 ms
70,176 KB
testcase_13 AC 43 ms
55,108 KB
testcase_14 AC 52 ms
68,572 KB
testcase_15 AC 2,317 ms
202,696 KB
testcase_16 AC 47 ms
61,516 KB
testcase_17 AC 579 ms
140,860 KB
testcase_18 AC 2,920 ms
259,424 KB
testcase_19 AC 341 ms
132,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys, math

input = sys.stdin.readline


N = int(input())
A = list(map(int, input().split()))
X = set([0])
for a in A:
    Y = set(X)
    for x in X:
        Y.add(x ^ a)
    X = set(Y)
print(len(X))
0