結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー shotoyooshotoyoo
提出日時 2021-06-25 00:42:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 1,223 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 93,236 KB
最終ジャッジ日時 2024-06-25 07:38:27
合計ジャッジ時間 5,956 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 41 ms
52,736 KB
testcase_03 AC 41 ms
52,736 KB
testcase_04 AC 41 ms
52,736 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 120 ms
86,784 KB
testcase_09 AC 58 ms
72,576 KB
testcase_10 AC 94 ms
80,640 KB
testcase_11 AC 78 ms
74,752 KB
testcase_12 AC 124 ms
90,240 KB
testcase_13 AC 129 ms
90,752 KB
testcase_14 AC 91 ms
80,896 KB
testcase_15 AC 137 ms
93,128 KB
testcase_16 AC 123 ms
88,784 KB
testcase_17 AC 125 ms
90,560 KB
testcase_18 AC 39 ms
57,984 KB
testcase_19 AC 36 ms
52,284 KB
testcase_20 AC 57 ms
77,824 KB
testcase_21 AC 139 ms
93,236 KB
testcase_22 AC 140 ms
92,800 KB
testcase_23 AC 40 ms
51,968 KB
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 38 ms
52,480 KB
testcase_26 AC 38 ms
51,840 KB
testcase_27 AC 38 ms
52,224 KB
testcase_28 AC 100 ms
83,072 KB
testcase_29 AC 128 ms
90,496 KB
testcase_30 AC 116 ms
88,960 KB
testcase_31 AC 108 ms
86,528 KB
testcase_32 AC 119 ms
89,344 KB
testcase_33 AC 137 ms
92,800 KB
testcase_34 AC 141 ms
92,416 KB
testcase_35 AC 143 ms
93,184 KB
testcase_36 AC 143 ms
92,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))

class BaseF2:
    def  __init__(self, vs=None):
        """vs: list of vecotr in F2
        """
        self.base = []
        if vs is not None:
            for v in vs:
                tmp = v
                for u in self.base:
                    tmp = min(tmp, tmp^u)
                if tmp>0:
                    self.base.append(tmp)
    def dim(self):
        return len(self.base)
    def insert(self, v):
        # 次元が上がったかを返す
        for u in self.base:
            v = min(v, v^u)
            if v==0:
                return False
        self.base.append(v)
        return True
    def check(self, v):
        res = [] # vの作り方
        for u in self.base:
            nv = min(v, v^u)
            if nv<v:
                res.append(u)
                v = nv                    
        return v==0 #, res
    def clear(self):
        self.base = []
n = int(input())
a = list(map(int, input().split()))
base = BaseF2(a)
ans = pow(2, base.dim())
print(ans)
0