結果

問題 No.1674 Introduction to XOR
ユーザー AsahiAsahi
提出日時 2023-02-06 13:50:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 825 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-07-04 18:27:40
合計ジャッジ時間 5,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,692 KB
testcase_01 AC 124 ms
41,180 KB
testcase_02 AC 122 ms
41,312 KB
testcase_03 AC 123 ms
41,132 KB
testcase_04 AC 128 ms
41,280 KB
testcase_05 AC 134 ms
41,160 KB
testcase_06 AC 114 ms
40,328 KB
testcase_07 AC 129 ms
41,216 KB
testcase_08 AC 125 ms
41,200 KB
testcase_09 AC 130 ms
41,216 KB
testcase_10 AC 131 ms
41,184 KB
testcase_11 AC 130 ms
41,480 KB
testcase_12 AC 127 ms
41,336 KB
testcase_13 AC 112 ms
40,432 KB
testcase_14 AC 119 ms
40,480 KB
testcase_15 AC 133 ms
41,044 KB
testcase_16 AC 129 ms
41,184 KB
testcase_17 AC 139 ms
41,436 KB
testcase_18 AC 133 ms
41,400 KB
testcase_19 AC 134 ms
41,424 KB
testcase_20 AC 135 ms
41,464 KB
testcase_21 AC 126 ms
41,216 KB
testcase_22 AC 134 ms
41,260 KB
testcase_23 AC 130 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
// import java.util.stream.Stream;

class Main{
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws IOException{
        int n = sc.nextInt();
        long [] A = new long[n];
        long OR = 0L;
        long answer = (long)1e18+1;
        for(int i=0;i<n;i++) A[i] = sc.nextLong();
        for(int i=0;i<n;i++) OR |= A[i];
        for(int i=0;i<=60;i++) {
            long bit = (OR>>i) & 1;
            if(bit == 0) {
                output.println((1L<<i));
                break;
            }
        }
        output.flush();
    }
}
0