結果
| 問題 | No.1674 Introduction to XOR | 
| コンテスト | |
| ユーザー |  c-yan | 
| 提出日時 | 2021-09-10 22:47:55 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 162 bytes | 
| コンパイル時間 | 530 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 10,624 KB | 
| 最終ジャッジ日時 | 2024-06-12 02:19:09 | 
| 合計ジャッジ時間 | 1,713 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | WA * 21 | 
ソースコード
N, *A = map(int, open(0).read().split())
x = 0
for a in A:
    x |= a
for i in range(x.bit_length()):
    if (1 << i) and x != 0:
        continue
print(1 << i)
            
            
            
        