結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー 👑 rin204rin204
提出日時 2022-07-06 08:06:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 179 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 93,652 KB
最終ジャッジ日時 2024-12-20 03:08:25
合計ジャッジ時間 6,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,960 KB
testcase_01 AC 40 ms
53,168 KB
testcase_02 AC 39 ms
53,352 KB
testcase_03 AC 37 ms
51,940 KB
testcase_04 AC 38 ms
52,820 KB
testcase_05 AC 38 ms
52,436 KB
testcase_06 AC 38 ms
52,376 KB
testcase_07 AC 37 ms
52,740 KB
testcase_08 AC 110 ms
85,944 KB
testcase_09 AC 59 ms
64,968 KB
testcase_10 AC 95 ms
79,704 KB
testcase_11 AC 80 ms
74,564 KB
testcase_12 AC 122 ms
89,520 KB
testcase_13 AC 136 ms
90,912 KB
testcase_14 AC 92 ms
78,848 KB
testcase_15 AC 143 ms
93,156 KB
testcase_16 AC 120 ms
87,468 KB
testcase_17 AC 135 ms
90,592 KB
testcase_18 AC 42 ms
58,456 KB
testcase_19 AC 38 ms
52,148 KB
testcase_20 AC 60 ms
79,536 KB
testcase_21 AC 142 ms
93,652 KB
testcase_22 AC 145 ms
93,236 KB
testcase_23 AC 39 ms
51,944 KB
testcase_24 AC 40 ms
53,104 KB
testcase_25 AC 37 ms
53,684 KB
testcase_26 AC 38 ms
51,940 KB
testcase_27 AC 37 ms
53,716 KB
testcase_28 AC 99 ms
82,172 KB
testcase_29 AC 129 ms
90,576 KB
testcase_30 AC 111 ms
87,504 KB
testcase_31 AC 104 ms
82,712 KB
testcase_32 AC 121 ms
87,404 KB
testcase_33 AC 141 ms
92,792 KB
testcase_34 AC 138 ms
92,836 KB
testcase_35 AC 146 ms
92,912 KB
testcase_36 AC 146 ms
92,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
base = []
for a in A:
    for b in base:
        a = min(a, a ^ b)
    if a != 0:
        base.append(a)
print(1 << len(base))
0