結果

問題 No.1674 Introduction to XOR
ユーザー KeroruKeroru
提出日時 2021-09-11 09:33:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 128 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 58,236 KB
最終ジャッジ日時 2024-06-22 15:34:10
合計ジャッジ時間 1,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,160 KB
testcase_01 AC 34 ms
52,700 KB
testcase_02 AC 36 ms
52,692 KB
testcase_03 AC 34 ms
52,196 KB
testcase_04 AC 33 ms
52,452 KB
testcase_05 AC 33 ms
52,408 KB
testcase_06 AC 33 ms
53,476 KB
testcase_07 AC 34 ms
52,084 KB
testcase_08 AC 32 ms
53,072 KB
testcase_09 AC 33 ms
53,312 KB
testcase_10 AC 34 ms
52,860 KB
testcase_11 AC 34 ms
53,080 KB
testcase_12 AC 35 ms
51,956 KB
testcase_13 AC 32 ms
52,128 KB
testcase_14 AC 31 ms
52,828 KB
testcase_15 AC 31 ms
52,244 KB
testcase_16 AC 32 ms
53,024 KB
testcase_17 AC 31 ms
52,188 KB
testcase_18 AC 32 ms
52,632 KB
testcase_19 AC 31 ms
53,052 KB
testcase_20 AC 30 ms
53,016 KB
testcase_21 AC 31 ms
52,332 KB
testcase_22 AC 31 ms
52,296 KB
testcase_23 AC 35 ms
58,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a=map(int,open(0).read().split())
for i in range(70):
    x=1<<i
    if all(x+j==x^j for j in a):
        break
print(x)
    
0