結果

問題 No.1674 Introduction to XOR
ユーザー kyaneko999kyaneko999
提出日時 2021-09-10 22:10:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 208 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 58,244 KB
最終ジャッジ日時 2024-06-12 00:27:50
合計ジャッジ時間 1,963 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,228 KB
testcase_01 AC 33 ms
52,220 KB
testcase_02 AC 33 ms
52,156 KB
testcase_03 AC 32 ms
52,804 KB
testcase_04 AC 33 ms
52,304 KB
testcase_05 AC 33 ms
52,396 KB
testcase_06 AC 33 ms
52,200 KB
testcase_07 AC 34 ms
52,028 KB
testcase_08 AC 33 ms
53,188 KB
testcase_09 AC 33 ms
52,400 KB
testcase_10 AC 33 ms
53,472 KB
testcase_11 AC 34 ms
52,396 KB
testcase_12 AC 35 ms
53,152 KB
testcase_13 AC 32 ms
53,412 KB
testcase_14 AC 33 ms
52,420 KB
testcase_15 AC 32 ms
52,352 KB
testcase_16 AC 32 ms
52,140 KB
testcase_17 AC 34 ms
53,620 KB
testcase_18 AC 32 ms
52,004 KB
testcase_19 AC 33 ms
52,612 KB
testcase_20 AC 34 ms
53,536 KB
testcase_21 AC 33 ms
52,188 KB
testcase_22 AC 35 ms
52,576 KB
testcase_23 AC 39 ms
58,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
ans=1
while 1:
    ok=1
    for a in A:
        if (a+ans)!=(a^ans):
            ok=0
            break
    if ok:
        print(ans)
        exit()
    ans<<=1
0