結果

問題 No.1674 Introduction to XOR
ユーザー merlinmerlin
提出日時 2021-09-10 21:29:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 695 bytes
コンパイル時間 2,764 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 37,076 KB
最終ジャッジ日時 2024-06-11 22:33:03
合計ジャッジ時間 4,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,988 KB
testcase_01 AC 52 ms
36,424 KB
testcase_02 AC 52 ms
36,680 KB
testcase_03 AC 51 ms
36,932 KB
testcase_04 AC 54 ms
36,668 KB
testcase_05 AC 51 ms
37,040 KB
testcase_06 AC 51 ms
36,556 KB
testcase_07 AC 51 ms
36,872 KB
testcase_08 AC 51 ms
36,528 KB
testcase_09 AC 52 ms
37,028 KB
testcase_10 AC 52 ms
36,952 KB
testcase_11 AC 53 ms
36,692 KB
testcase_12 AC 53 ms
36,948 KB
testcase_13 AC 51 ms
36,952 KB
testcase_14 AC 51 ms
36,928 KB
testcase_15 AC 51 ms
37,076 KB
testcase_16 AC 52 ms
37,060 KB
testcase_17 AC 54 ms
36,540 KB
testcase_18 AC 51 ms
36,752 KB
testcase_19 AC 51 ms
36,844 KB
testcase_20 AC 51 ms
37,072 KB
testcase_21 AC 51 ms
36,924 KB
testcase_22 AC 54 ms
37,032 KB
testcase_23 AC 52 ms
36,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        String s[]=bu.readLine().split(" ");
        int i,c[]=new int[63],j; long a;
        for(i=0;i<n;i++)
        {
            a=Long.parseLong(s[i]);
            for(j=0;j<63;j++)
            if(((a>>j)&1)==1) c[j]++;
        }

        long ans=0;
        for(i=0;i<63;i++)
        if(c[i]==0)
        {
            ans=1l<<i;
            break;
        }
        System.out.println(ans);
    }
}
0