結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tonnnura172tonnnura172
提出日時 2020-05-05 16:18:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 922 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 71,808 KB
最終ジャッジ日時 2024-06-26 20:36:17
合計ジャッジ時間 6,139 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
67,328 KB
testcase_01 AC 71 ms
67,328 KB
testcase_02 AC 69 ms
67,840 KB
testcase_03 AC 67 ms
67,968 KB
testcase_04 AC 67 ms
67,328 KB
testcase_05 AC 69 ms
68,096 KB
testcase_06 AC 67 ms
67,584 KB
testcase_07 WA -
testcase_08 AC 564 ms
71,040 KB
testcase_09 AC 412 ms
70,400 KB
testcase_10 AC 477 ms
70,656 KB
testcase_11 AC 605 ms
70,656 KB
testcase_12 WA -
testcase_13 AC 67 ms
66,560 KB
testcase_14 AC 318 ms
70,528 KB
testcase_15 AC 625 ms
70,656 KB
testcase_16 AC 69 ms
67,712 KB
testcase_17 AC 194 ms
69,632 KB
testcase_18 WA -
testcase_19 AC 137 ms
69,120 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 = 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