結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー qibqib
提出日時 2023-02-12 15:23:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 200 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 93,244 KB
最終ジャッジ日時 2024-07-16 05:27:11
合計ジャッジ時間 5,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,936 KB
testcase_01 AC 40 ms
52,248 KB
testcase_02 AC 41 ms
52,204 KB
testcase_03 AC 39 ms
52,336 KB
testcase_04 AC 40 ms
52,384 KB
testcase_05 AC 39 ms
53,256 KB
testcase_06 AC 41 ms
52,896 KB
testcase_07 AC 39 ms
52,760 KB
testcase_08 AC 117 ms
85,140 KB
testcase_09 AC 60 ms
66,928 KB
testcase_10 AC 99 ms
79,556 KB
testcase_11 AC 83 ms
73,848 KB
testcase_12 AC 125 ms
88,968 KB
testcase_13 AC 138 ms
90,872 KB
testcase_14 AC 95 ms
78,600 KB
testcase_15 AC 140 ms
92,764 KB
testcase_16 AC 125 ms
86,868 KB
testcase_17 AC 135 ms
90,488 KB
testcase_18 AC 42 ms
58,068 KB
testcase_19 AC 38 ms
52,332 KB
testcase_20 AC 65 ms
81,704 KB
testcase_21 AC 145 ms
93,244 KB
testcase_22 AC 147 ms
92,952 KB
testcase_23 AC 40 ms
52,492 KB
testcase_24 AC 41 ms
51,908 KB
testcase_25 AC 41 ms
52,752 KB
testcase_26 AC 39 ms
52,864 KB
testcase_27 AC 41 ms
52,068 KB
testcase_28 AC 108 ms
81,596 KB
testcase_29 AC 127 ms
91,008 KB
testcase_30 AC 115 ms
86,460 KB
testcase_31 AC 107 ms
83,412 KB
testcase_32 AC 120 ms
87,392 KB
testcase_33 AC 142 ms
93,068 KB
testcase_34 AC 140 ms
92,620 KB
testcase_35 AC 144 ms
92,904 KB
testcase_36 AC 146 ms
92,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

# XOR基底掃き出し
base = [0]
for v in a:
  for e in base:
    v = min(v, v ^ e)
  if v > 0:
    base.append(v)

print(pow(2, len(base) - 1))
0