結果

問題 No.1674 Introduction to XOR
ユーザー NoneNone
提出日時 2021-10-04 03:39:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 204 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 60,492 KB
最終ジャッジ日時 2024-07-22 01:02:15
合計ジャッジ時間 1,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,944 KB
testcase_01 AC 37 ms
53,360 KB
testcase_02 AC 37 ms
52,200 KB
testcase_03 AC 38 ms
52,160 KB
testcase_04 AC 35 ms
52,932 KB
testcase_05 AC 35 ms
52,364 KB
testcase_06 AC 36 ms
53,792 KB
testcase_07 AC 35 ms
51,940 KB
testcase_08 AC 35 ms
53,244 KB
testcase_09 AC 35 ms
52,644 KB
testcase_10 AC 35 ms
52,948 KB
testcase_11 AC 36 ms
52,980 KB
testcase_12 AC 40 ms
52,664 KB
testcase_13 AC 36 ms
52,220 KB
testcase_14 AC 40 ms
58,748 KB
testcase_15 AC 39 ms
58,596 KB
testcase_16 AC 37 ms
52,556 KB
testcase_17 AC 41 ms
58,704 KB
testcase_18 AC 40 ms
59,640 KB
testcase_19 AC 40 ms
60,492 KB
testcase_20 AC 41 ms
58,788 KB
testcase_21 AC 35 ms
52,432 KB
testcase_22 AC 40 ms
60,160 KB
testcase_23 AC 41 ms
58,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
F=[0]*64
for a in A:
    for i in range(64):
        if a&(1<<i):
            F[i]=1
for i in range(64):
    if F[i]==0:
        print(1<<i)
        exit()
0