結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tonnnura172tonnnura172
提出日時 2020-05-05 16:21:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 916 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 11,012 KB
実行使用メモリ 14,680 KB
最終ジャッジ日時 2023-09-09 03:29:00
合計ジャッジ時間 7,350 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
14,340 KB
testcase_01 AC 40 ms
9,892 KB
testcase_02 AC 72 ms
9,756 KB
testcase_03 AC 65 ms
9,844 KB
testcase_04 AC 44 ms
9,812 KB
testcase_05 AC 76 ms
9,820 KB
testcase_06 AC 52 ms
9,720 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians, gcd, log
from itertools import accumulate, permutations, combinations, product
from operator import itemgetter, mul, add
from copy import deepcopy
from string import ascii_lowercase, ascii_uppercase, digits
from bisect import bisect, bisect_left
from heapq import heappush, heappop
from functools import reduce, lru_cache
def input(): return sys.stdin.readline().strip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
def ZIP(n): return zip(*(MAP() for _ in range(n)))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

N = INT()
A = list(set(LIST()))
A_max = 1<<15
dp = [0]*(A_max+1)
dp[0] = 1
for a in A:
	for i in range(A_max, -1, -1):
		if dp[i]:
			dp[i^a] = 1

print(sum(dp))
0