結果

問題 No.1674 Introduction to XOR
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-09-10 21:29:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 249 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 57,844 KB
最終ジャッジ日時 2024-06-11 22:31:28
合計ジャッジ時間 2,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,268 KB
testcase_01 AC 37 ms
52,356 KB
testcase_02 AC 37 ms
52,516 KB
testcase_03 AC 39 ms
52,752 KB
testcase_04 AC 36 ms
53,432 KB
testcase_05 AC 38 ms
53,104 KB
testcase_06 AC 37 ms
52,948 KB
testcase_07 AC 37 ms
52,360 KB
testcase_08 AC 37 ms
51,940 KB
testcase_09 AC 36 ms
53,416 KB
testcase_10 AC 36 ms
52,492 KB
testcase_11 AC 37 ms
52,268 KB
testcase_12 AC 36 ms
53,028 KB
testcase_13 AC 36 ms
52,620 KB
testcase_14 AC 36 ms
52,744 KB
testcase_15 AC 37 ms
52,892 KB
testcase_16 AC 37 ms
53,816 KB
testcase_17 AC 37 ms
52,688 KB
testcase_18 AC 36 ms
53,556 KB
testcase_19 AC 36 ms
52,356 KB
testcase_20 AC 36 ms
52,944 KB
testcase_21 AC 35 ms
52,560 KB
testcase_22 AC 37 ms
52,884 KB
testcase_23 AC 40 ms
57,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

N = int(stdin.readline())

A = list(map(int,stdin.readline().split()))

for i in range(70):

    x = 2**i
    for a in A:
        if a & x != 0:
            break
    else:
        print (x)
        break
0