結果

問題 No.1674 Introduction to XOR
ユーザー ygd.ygd.
提出日時 2021-09-11 11:23:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 345 bytes
コンパイル時間 993 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 58,256 KB
最終ジャッジ日時 2024-06-22 19:00:58
合計ジャッジ時間 2,139 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,312 KB
testcase_01 AC 34 ms
52,076 KB
testcase_02 AC 34 ms
53,440 KB
testcase_03 AC 36 ms
52,132 KB
testcase_04 AC 37 ms
52,392 KB
testcase_05 AC 37 ms
52,104 KB
testcase_06 AC 38 ms
51,696 KB
testcase_07 AC 38 ms
53,132 KB
testcase_08 AC 38 ms
52,956 KB
testcase_09 AC 36 ms
52,736 KB
testcase_10 AC 37 ms
53,004 KB
testcase_11 AC 36 ms
52,692 KB
testcase_12 AC 36 ms
52,324 KB
testcase_13 AC 37 ms
52,464 KB
testcase_14 AC 37 ms
52,536 KB
testcase_15 AC 37 ms
52,468 KB
testcase_16 AC 36 ms
52,788 KB
testcase_17 AC 38 ms
52,364 KB
testcase_18 AC 39 ms
52,424 KB
testcase_19 AC 34 ms
52,184 KB
testcase_20 AC 37 ms
53,072 KB
testcase_21 AC 38 ms
53,100 KB
testcase_22 AC 37 ms
52,520 KB
testcase_23 AC 39 ms
58,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def main():
    N = int(input())
    A = list(map(int,input().split()))
    MAX = 70
    ans = 0
    for j in range(MAX):
        for i in range(N):
            if (A[i]>>j)&1 == 1: break
        else:
            ans += 1<<j
            break
    print(ans)
        

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