結果

問題 No.1450 nahco314's First Problem
ユーザー tentententen
提出日時 2024-07-29 10:35:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,491 bytes
コンパイル時間 3,053 ms
コンパイル使用メモリ 78,216 KB
実行使用メモリ 37,192 KB
最終ジャッジ日時 2024-07-29 10:36:04
合計ジャッジ時間 7,605 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,716 KB
testcase_01 AC 52 ms
36,936 KB
testcase_02 AC 53 ms
37,192 KB
testcase_03 AC 52 ms
36,920 KB
testcase_04 AC 53 ms
36,812 KB
testcase_05 AC 53 ms
37,068 KB
testcase_06 AC 53 ms
36,604 KB
testcase_07 AC 53 ms
37,140 KB
testcase_08 AC 53 ms
36,608 KB
testcase_09 AC 53 ms
36,740 KB
testcase_10 AC 52 ms
37,116 KB
testcase_11 AC 53 ms
36,736 KB
testcase_12 AC 53 ms
37,132 KB
testcase_13 AC 52 ms
37,016 KB
testcase_14 AC 52 ms
37,068 KB
testcase_15 AC 54 ms
36,572 KB
testcase_16 AC 53 ms
36,584 KB
testcase_17 AC 53 ms
37,100 KB
testcase_18 AC 54 ms
37,052 KB
testcase_19 AC 54 ms
37,132 KB
testcase_20 AC 53 ms
37,064 KB
testcase_21 AC 52 ms
37,144 KB
testcase_22 AC 53 ms
36,848 KB
testcase_23 AC 53 ms
37,192 KB
testcase_24 AC 52 ms
36,916 KB
testcase_25 AC 51 ms
36,816 KB
testcase_26 AC 52 ms
36,932 KB
testcase_27 AC 53 ms
36,820 KB
testcase_28 AC 51 ms
36,740 KB
testcase_29 AC 52 ms
37,132 KB
testcase_30 AC 53 ms
36,684 KB
testcase_31 AC 53 ms
37,056 KB
testcase_32 AC 54 ms
37,140 KB
testcase_33 AC 52 ms
36,940 KB
testcase_34 AC 51 ms
36,696 KB
testcase_35 AC 56 ms
36,816 KB
testcase_36 AC 54 ms
37,100 KB
testcase_37 AC 52 ms
36,800 KB
testcase_38 AC 51 ms
36,600 KB
testcase_39 AC 53 ms
36,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long target = sc.nextLong();
        for (int i = 1; i < 60; i++) {
            if (getPop(target ^ i) == i) {
                System.out.println(target ^ i);
                return;
            }
        }
        System.out.println(-1);
    }
    
    static long getPop(long x) {
        long pop = 0;
        while (x > 0) {
            pop += x % 2;
            x >>= 1;
        }
        return pop;
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0