結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー convexineqconvexineq
提出日時 2020-12-10 09:35:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 164 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 95,488 KB
最終ジャッジ日時 2024-09-19 17:26:37
合計ジャッジ時間 5,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,456 KB
testcase_01 AC 34 ms
51,456 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 32 ms
51,712 KB
testcase_04 AC 33 ms
51,712 KB
testcase_05 AC 32 ms
51,584 KB
testcase_06 AC 33 ms
51,328 KB
testcase_07 AC 34 ms
51,584 KB
testcase_08 AC 107 ms
86,444 KB
testcase_09 AC 52 ms
65,280 KB
testcase_10 AC 94 ms
80,000 KB
testcase_11 AC 76 ms
73,856 KB
testcase_12 AC 124 ms
92,160 KB
testcase_13 AC 129 ms
92,800 KB
testcase_14 AC 87 ms
79,232 KB
testcase_15 AC 131 ms
94,964 KB
testcase_16 AC 116 ms
90,496 KB
testcase_17 AC 125 ms
92,416 KB
testcase_18 AC 37 ms
57,856 KB
testcase_19 AC 33 ms
51,584 KB
testcase_20 AC 56 ms
81,664 KB
testcase_21 AC 133 ms
95,488 KB
testcase_22 AC 135 ms
94,976 KB
testcase_23 AC 33 ms
51,968 KB
testcase_24 AC 34 ms
51,968 KB
testcase_25 AC 32 ms
52,184 KB
testcase_26 AC 34 ms
51,876 KB
testcase_27 AC 33 ms
51,456 KB
testcase_28 AC 98 ms
83,328 KB
testcase_29 AC 124 ms
93,056 KB
testcase_30 AC 107 ms
88,740 KB
testcase_31 AC 95 ms
85,248 KB
testcase_32 AC 113 ms
90,880 KB
testcase_33 AC 132 ms
94,720 KB
testcase_34 AC 130 ms
94,848 KB
testcase_35 AC 133 ms
94,848 KB
testcase_36 AC 132 ms
94,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
basis = []
for e in a:
    for b in basis:
        if e > e^b: e ^= b
    if e: basis.append(e)
print(1<<len(basis))
0