結果
問題 | No.184 たのしい排他的論理和(HARD) |
ユーザー | 👑 Kazun |
提出日時 | 2021-05-03 00:45:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 157 ms / 5,000 ms |
コード長 | 1,353 bytes |
コンパイル時間 | 307 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 96,768 KB |
最終ジャッジ日時 | 2024-07-21 09:55:25 |
合計ジャッジ時間 | 6,264 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
52,096 KB |
testcase_01 | AC | 37 ms
52,096 KB |
testcase_02 | AC | 38 ms
52,608 KB |
testcase_03 | AC | 38 ms
51,712 KB |
testcase_04 | AC | 38 ms
52,096 KB |
testcase_05 | AC | 38 ms
52,480 KB |
testcase_06 | AC | 38 ms
52,096 KB |
testcase_07 | AC | 38 ms
52,096 KB |
testcase_08 | AC | 124 ms
89,600 KB |
testcase_09 | AC | 60 ms
71,936 KB |
testcase_10 | AC | 97 ms
82,304 KB |
testcase_11 | AC | 90 ms
82,176 KB |
testcase_12 | AC | 140 ms
93,736 KB |
testcase_13 | AC | 138 ms
94,720 KB |
testcase_14 | AC | 94 ms
81,792 KB |
testcase_15 | AC | 144 ms
96,128 KB |
testcase_16 | AC | 127 ms
91,904 KB |
testcase_17 | AC | 133 ms
94,080 KB |
testcase_18 | AC | 42 ms
57,848 KB |
testcase_19 | AC | 38 ms
52,096 KB |
testcase_20 | AC | 60 ms
80,128 KB |
testcase_21 | AC | 154 ms
96,512 KB |
testcase_22 | AC | 157 ms
96,512 KB |
testcase_23 | AC | 39 ms
52,096 KB |
testcase_24 | AC | 38 ms
52,352 KB |
testcase_25 | AC | 39 ms
52,224 KB |
testcase_26 | AC | 38 ms
51,712 KB |
testcase_27 | AC | 39 ms
51,712 KB |
testcase_28 | AC | 101 ms
84,992 KB |
testcase_29 | AC | 139 ms
94,056 KB |
testcase_30 | AC | 120 ms
91,472 KB |
testcase_31 | AC | 117 ms
89,344 KB |
testcase_32 | AC | 132 ms
92,288 KB |
testcase_33 | AC | 154 ms
96,256 KB |
testcase_34 | AC | 142 ms
96,488 KB |
testcase_35 | AC | 155 ms
96,584 KB |
testcase_36 | AC | 145 ms
96,768 KB |
ソースコード
class XOR_Vector_Space: def __init__(self): self.S=[] def __contains__(self,x): for v in self.S: if x&v&(-v): x^=v if x==0: return True return False def __add__(self,other): W=XOR_Vector_Space() W.S=self.S[:] W.add_vector(*other.S) return W def add_vector(self,*T): for x in T: for v in self.S: if x&v&(-v): x^=v if x==0: break if x: self.S.append(x) def dim(self): return len(self.S) def reduction(self): S=self.S for i in range(len(S)): vb=S[i]&(-S[i]) for j in range(len(S)): if i==j: continue if S[j]&vb: S[j]^=S[i] self.S=[s for s in S if s] def __le__(self,other): for u in self.S: if not u in other: return False return True def __ge__(self,other): return other<=self def __eq__(self,other): return (self<=other) and (other<=self) #================================================ N=int(input()) A=list(map(int,input().split())) V=XOR_Vector_Space() V.add_vector(*A) print(pow(2,V.dim()))