結果

問題 No.1674 Introduction to XOR
ユーザー mrngmrng
提出日時 2021-12-16 23:37:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 145 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 53,568 KB
最終ジャッジ日時 2024-09-13 23:28:56
合計ジャッジ時間 2,217 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,976 KB
testcase_01 AC 39 ms
51,892 KB
testcase_02 AC 39 ms
51,980 KB
testcase_03 AC 38 ms
52,220 KB
testcase_04 AC 38 ms
53,128 KB
testcase_05 AC 39 ms
52,372 KB
testcase_06 AC 37 ms
52,120 KB
testcase_07 AC 36 ms
52,364 KB
testcase_08 AC 37 ms
53,568 KB
testcase_09 AC 37 ms
52,152 KB
testcase_10 AC 37 ms
52,972 KB
testcase_11 AC 37 ms
52,088 KB
testcase_12 AC 37 ms
53,240 KB
testcase_13 AC 37 ms
52,876 KB
testcase_14 AC 38 ms
52,072 KB
testcase_15 AC 38 ms
52,084 KB
testcase_16 AC 37 ms
52,572 KB
testcase_17 AC 37 ms
53,004 KB
testcase_18 AC 37 ms
53,232 KB
testcase_19 AC 37 ms
52,636 KB
testcase_20 AC 37 ms
53,120 KB
testcase_21 AC 37 ms
52,616 KB
testcase_22 AC 38 ms
51,900 KB
testcase_23 AC 37 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = 0
for i in a:
	b |= i
c = 0
while b>0:
	if b&1==0: break
	c += 1
	b >>= 1
print(pow(2,c))
0