結果

問題 No.1674 Introduction to XOR
ユーザー kept1994kept1994
提出日時 2021-09-11 00:13:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 60,480 KB
最終ジャッジ日時 2024-06-12 18:52:01
合計ジャッジ時間 1,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,644 KB
testcase_01 AC 36 ms
53,324 KB
testcase_02 AC 36 ms
52,504 KB
testcase_03 AC 37 ms
52,072 KB
testcase_04 AC 36 ms
52,744 KB
testcase_05 AC 35 ms
53,144 KB
testcase_06 AC 36 ms
52,824 KB
testcase_07 AC 36 ms
53,008 KB
testcase_08 AC 38 ms
53,324 KB
testcase_09 AC 37 ms
52,664 KB
testcase_10 AC 37 ms
53,072 KB
testcase_11 AC 37 ms
52,728 KB
testcase_12 AC 38 ms
52,276 KB
testcase_13 AC 37 ms
52,288 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 37 ms
52,588 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N = int(input())
    A = list(map(int, input().split()))
    nums = [True] * 60
    for aa in A:
        for i in range(60):
            if aa >> i & 1:
                nums[i] = False            
    for i, f in enumerate(nums):
        if f:
            print(2 ** i)
            return  

if __name__ == '__main__':
    main()
0