結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-05 07:57:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 168 bytes
コンパイル時間 657 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 98,492 KB
最終ジャッジ日時 2024-10-15 15:03:24
合計ジャッジ時間 5,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 44 ms
58,496 KB
testcase_03 AC 36 ms
51,328 KB
testcase_04 AC 37 ms
51,584 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 41 ms
57,728 KB
testcase_08 AC 78 ms
94,336 KB
testcase_09 AC 48 ms
65,920 KB
testcase_10 AC 69 ms
86,400 KB
testcase_11 AC 61 ms
78,080 KB
testcase_12 AC 85 ms
89,984 KB
testcase_13 AC 86 ms
90,624 KB
testcase_14 AC 68 ms
86,016 KB
testcase_15 AC 90 ms
92,416 KB
testcase_16 AC 82 ms
88,448 KB
testcase_17 AC 84 ms
90,368 KB
testcase_18 AC 42 ms
57,812 KB
testcase_19 AC 37 ms
51,584 KB
testcase_20 AC 105 ms
88,008 KB
testcase_21 AC 91 ms
92,600 KB
testcase_22 AC 92 ms
93,012 KB
testcase_23 AC 37 ms
51,840 KB
testcase_24 AC 37 ms
51,840 KB
testcase_25 AC 38 ms
51,584 KB
testcase_26 AC 37 ms
51,456 KB
testcase_27 AC 37 ms
51,456 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 94 ms
92,800 KB
testcase_34 AC 92 ms
92,544 KB
testcase_35 AC 93 ms
92,672 KB
testcase_36 AC 91 ms
92,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

cnt = 0
for i in range(62):
    cnt += any((a >> i) & 1 for a in A)
cnt = min(len(set(A)), cnt)
print(pow(2, cnt))
0