結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tonnnura172tonnnura172
提出日時 2020-05-05 16:18:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 922 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 87,312 KB
実行使用メモリ 81,848 KB
最終ジャッジ日時 2023-09-09 03:25:56
合計ジャッジ時間 8,596 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
80,808 KB
testcase_01 AC 169 ms
80,944 KB
testcase_02 AC 170 ms
81,252 KB
testcase_03 AC 169 ms
81,120 KB
testcase_04 AC 164 ms
81,088 KB
testcase_05 AC 168 ms
81,244 KB
testcase_06 AC 168 ms
80,780 KB
testcase_07 WA -
testcase_08 AC 664 ms
81,624 KB
testcase_09 AC 503 ms
81,648 KB
testcase_10 AC 575 ms
81,764 KB
testcase_11 AC 710 ms
81,712 KB
testcase_12 WA -
testcase_13 AC 163 ms
80,972 KB
testcase_14 AC 418 ms
81,376 KB
testcase_15 AC 724 ms
81,660 KB
testcase_16 AC 174 ms
81,156 KB
testcase_17 AC 289 ms
81,408 KB
testcase_18 WA -
testcase_19 AC 237 ms
81,524 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