結果

問題 No.1674 Introduction to XOR
ユーザー kept1994kept1994
提出日時 2021-09-11 00:24:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 503 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 60,296 KB
最終ジャッジ日時 2024-06-12 19:36:06
合計ジャッジ時間 2,136 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,476 KB
testcase_01 AC 30 ms
52,552 KB
testcase_02 AC 30 ms
52,752 KB
testcase_03 AC 33 ms
52,424 KB
testcase_04 AC 29 ms
52,756 KB
testcase_05 AC 29 ms
53,308 KB
testcase_06 AC 30 ms
52,800 KB
testcase_07 AC 30 ms
52,212 KB
testcase_08 AC 30 ms
52,240 KB
testcase_09 AC 31 ms
53,576 KB
testcase_10 AC 30 ms
53,152 KB
testcase_11 AC 30 ms
52,896 KB
testcase_12 AC 32 ms
52,076 KB
testcase_13 AC 33 ms
53,152 KB
testcase_14 AC 37 ms
58,832 KB
testcase_15 AC 36 ms
60,296 KB
testcase_16 AC 35 ms
51,624 KB
testcase_17 AC 38 ms
59,192 KB
testcase_18 AC 34 ms
59,152 KB
testcase_19 AC 33 ms
59,844 KB
testcase_20 AC 33 ms
59,892 KB
testcase_21 AC 31 ms
52,820 KB
testcase_22 AC 34 ms
58,496 KB
testcase_23 AC 33 ms
58,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N = int(input())
    A = list(map(int, input().split()))
    nums = [True] * 65
    # import math
    # # print(math.log2(max(A)))
    # # print(10 ** 18)
    # # print(2 ** 60)
    # # print(2 ** 60 > 10 ** 18)
    for aa in A:
        for i in range(65):
            if aa >> i & 1:
                nums[i] = False      
    for i, f in enumerate(nums):
        if f:
            print(2 ** i)
            return
if __name__ == '__main__':
    main()
0