結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー fmhrfmhr
提出日時 2015-04-16 23:58:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 176 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,836 KB
最終ジャッジ日時 2024-07-04 11:12:46
合計ジャッジ時間 3,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,368 KB
testcase_02 AC 27 ms
10,368 KB
testcase_03 WA -
testcase_04 AC 27 ms
10,368 KB
testcase_05 AC 27 ms
10,368 KB
testcase_06 WA -
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 64 ms
18,428 KB
testcase_09 AC 35 ms
12,304 KB
testcase_10 AC 58 ms
16,600 KB
testcase_11 AC 47 ms
14,748 KB
testcase_12 AC 71 ms
19,892 KB
testcase_13 AC 78 ms
20,364 KB
testcase_14 AC 55 ms
16,136 KB
testcase_15 AC 78 ms
21,540 KB
testcase_16 AC 71 ms
19,492 KB
testcase_17 AC 73 ms
20,460 KB
testcase_18 AC 25 ms
10,368 KB
testcase_19 AC 27 ms
10,496 KB
testcase_20 AC 57 ms
12,352 KB
testcase_21 AC 82 ms
21,636 KB
testcase_22 AC 80 ms
21,772 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 78 ms
21,300 KB
testcase_34 AC 77 ms
21,100 KB
testcase_35 AC 77 ms
21,836 KB
testcase_36 AC 76 ms
21,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
a = list(map(int, input().split()))
or_sum = 0
for i in a:
    or_sum |= i

c = Counter(format(or_sum, 'b'))
print(2 ** c['1'])
0