結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
9,544 KB
testcase_01 AC 39 ms
9,544 KB
testcase_02 AC 52 ms
9,596 KB
testcase_03 AC 48 ms
9,492 KB
testcase_04 AC 37 ms
9,552 KB
testcase_05 AC 57 ms
9,624 KB
testcase_06 AC 42 ms
9,540 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()
A_max = 1<<14
dp = [0]*(A_max+1)
dp[0] = 1
for a in A:
	for i in range(A_max, -1, -1):
		if dp[i] and i^a <= A_max:
			dp[i^a] = 1

print(sum(dp))
0