結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
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))