結果

問題 No.1674 Introduction to XOR
ユーザー timitimi
提出日時 2021-09-13 10:14:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 230 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 59,896 KB
最終ジャッジ日時 2024-06-25 09:02:23
合計ジャッジ時間 2,169 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,884 KB
testcase_01 AC 37 ms
52,072 KB
testcase_02 AC 37 ms
53,760 KB
testcase_03 AC 38 ms
52,528 KB
testcase_04 AC 36 ms
53,164 KB
testcase_05 AC 37 ms
53,748 KB
testcase_06 AC 37 ms
53,296 KB
testcase_07 AC 38 ms
51,884 KB
testcase_08 AC 37 ms
52,976 KB
testcase_09 AC 36 ms
53,280 KB
testcase_10 AC 38 ms
52,644 KB
testcase_11 AC 37 ms
52,436 KB
testcase_12 AC 37 ms
52,960 KB
testcase_13 AC 36 ms
53,004 KB
testcase_14 AC 40 ms
58,772 KB
testcase_15 AC 41 ms
59,896 KB
testcase_16 AC 36 ms
52,280 KB
testcase_17 AC 43 ms
59,744 KB
testcase_18 AC 41 ms
59,504 KB
testcase_19 AC 42 ms
59,444 KB
testcase_20 AC 43 ms
59,664 KB
testcase_21 AC 38 ms
52,944 KB
testcase_22 AC 41 ms
58,980 KB
testcase_23 AC 41 ms
58,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
a=bin(10**18+1)
d=len(a)-1
D=[0]*d
for i in A:
  a=bin(i)[2:]
  for j in range(len(a)):
    if a[-1-j]=='1':
      D[j]=1
for i in range(d):
  if D[i]==0:
    print(2**i)
    exit()
0