結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | tonnnura172 |
提出日時 | 2020-05-05 16:16:23 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 905 bytes |
コンパイル時間 | 145 ms |
コンパイル使用メモリ | 82,248 KB |
実行使用メモリ | 73,720 KB |
最終ジャッジ日時 | 2024-06-26 20:33:03 |
合計ジャッジ時間 | 5,457 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 71 ms
67,072 KB |
testcase_01 | AC | 66 ms
67,072 KB |
testcase_02 | AC | 63 ms
67,584 KB |
testcase_03 | AC | 64 ms
67,584 KB |
testcase_04 | AC | 63 ms
67,456 KB |
testcase_05 | AC | 66 ms
67,968 KB |
testcase_06 | AC | 65 ms
67,584 KB |
testcase_07 | RE | - |
testcase_08 | AC | 538 ms
71,168 KB |
testcase_09 | AC | 390 ms
70,528 KB |
testcase_10 | AC | 455 ms
70,144 KB |
testcase_11 | AC | 576 ms
70,656 KB |
testcase_12 | RE | - |
testcase_13 | AC | 62 ms
66,560 KB |
testcase_14 | AC | 315 ms
70,656 KB |
testcase_15 | AC | 598 ms
70,656 KB |
testcase_16 | AC | 64 ms
67,968 KB |
testcase_17 | AC | 182 ms
69,760 KB |
testcase_18 | RE | - |
testcase_19 | AC | 130 ms
68,864 KB |
ソースコード
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]: dp[i^a] = 1 print(sum(dp))