結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー NoneNone
提出日時 2021-06-02 23:15:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 905 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-11-15 18:57:29
合計ジャッジ時間 6,643 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,400 KB
testcase_01 AC 37 ms
53,168 KB
testcase_02 AC 37 ms
53,356 KB
testcase_03 AC 37 ms
52,740 KB
testcase_04 AC 36 ms
53,200 KB
testcase_05 AC 37 ms
52,748 KB
testcase_06 AC 36 ms
52,340 KB
testcase_07 AC 37 ms
52,216 KB
testcase_08 AC 112 ms
82,136 KB
testcase_09 AC 61 ms
65,408 KB
testcase_10 AC 96 ms
77,056 KB
testcase_11 AC 81 ms
72,320 KB
testcase_12 AC 122 ms
86,784 KB
testcase_13 AC 129 ms
87,552 KB
testcase_14 AC 94 ms
76,800 KB
testcase_15 AC 137 ms
90,368 KB
testcase_16 AC 121 ms
84,736 KB
testcase_17 AC 127 ms
87,296 KB
testcase_18 AC 42 ms
57,856 KB
testcase_19 AC 38 ms
51,712 KB
testcase_20 AC 62 ms
78,592 KB
testcase_21 AC 142 ms
92,008 KB
testcase_22 AC 143 ms
91,980 KB
testcase_23 AC 43 ms
59,136 KB
testcase_24 AC 39 ms
52,224 KB
testcase_25 AC 41 ms
57,984 KB
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 103 ms
79,872 KB
testcase_29 AC 128 ms
88,584 KB
testcase_30 AC 117 ms
84,480 KB
testcase_31 AC 108 ms
81,408 KB
testcase_32 AC 122 ms
85,376 KB
testcase_33 AC 137 ms
90,896 KB
testcase_34 AC 138 ms
90,568 KB
testcase_35 AC 145 ms
91,932 KB
testcase_36 AC 147 ms
92,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Gauss2(mat):
    """
    F_2 用
    :param mat: [bit1,bit2,...]
    :return: rank, gaussの標準形
    """
    H,W=len(mat),max(mat).bit_length()
    res=[mat[i] for i in range(H)]
    rank = 0
    for w in range(W):
        pivot = -1
        for h in range(rank,H):
            if res[h] & (1<<w):
                pivot = h
                break
        else:
            continue
        res[rank],res[pivot] =res[pivot],res[rank]
        for h in range(H):
            if h == rank: continue
            if not (res[h]&(1<<w)):
                continue
            res[h] ^= res[rank]
        rank += 1
    return rank, res

def bit_rep(bit,N):
    return format(bit, "0" + str(N) + "b")

############################################################################
import sys
input = sys.stdin.readline


N=int(input())
A=list(map(int, input().split()))
rank,gauss=Gauss2(A)
print(pow(2,rank))
0