結果

問題 No.1674 Introduction to XOR
ユーザー kohei2019kohei2019
提出日時 2022-06-28 00:05:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-04-30 13:12:00
合計ジャッジ時間 2,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 34 ms
52,328 KB
testcase_02 AC 34 ms
53,080 KB
testcase_03 AC 33 ms
51,760 KB
testcase_04 AC 33 ms
52,728 KB
testcase_05 AC 33 ms
52,248 KB
testcase_06 AC 35 ms
53,316 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 35 ms
52,404 KB
testcase_09 AC 35 ms
51,752 KB
testcase_10 AC 36 ms
52,372 KB
testcase_11 AC 33 ms
53,008 KB
testcase_12 AC 35 ms
52,268 KB
testcase_13 AC 33 ms
52,400 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 35 ms
52,132 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsA = list(map(int,input().split()))
k = 0
for i in range(N):
    k |= lsA[i]
k ^= 2**61-1
bn = bin(k)
ind = 0
for i in range(1,61):
    if bn[-i] == '1':
        ind = i
        break
print(2**(ind-1))
0