結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tonnnura172tonnnura172
提出日時 2020-05-05 16:15:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 906 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 73,044 KB
最終ジャッジ日時 2024-06-26 20:32:14
合計ジャッジ時間 6,305 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
67,824 KB
testcase_01 AC 63 ms
66,316 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 64 ms
68,960 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 580 ms
72,552 KB
testcase_08 AC 572 ms
73,044 KB
testcase_09 AC 418 ms
71,324 KB
testcase_10 AC 487 ms
71,396 KB
testcase_11 AC 619 ms
72,536 KB
testcase_12 AC 62 ms
69,176 KB
testcase_13 AC 59 ms
67,384 KB
testcase_14 AC 64 ms
70,904 KB
testcase_15 AC 644 ms
72,160 KB
testcase_16 WA -
testcase_17 AC 187 ms
71,336 KB
testcase_18 AC 560 ms
71,296 KB
testcase_19 AC 128 ms
70,048 KB
権限があれば一括ダウンロードができます

ソースコード

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 = max(A)
dp = [0]*(1<<14+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