結果

問題 No.1450 nahco314's First Problem
ユーザー tentententen
提出日時 2021-04-12 18:07:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,389 bytes
コンパイル時間 4,915 ms
コンパイル使用メモリ 76,628 KB
実行使用メモリ 37,260 KB
最終ジャッジ日時 2024-11-08 14:28:17
合計ジャッジ時間 7,144 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,176 KB
testcase_01 AC 53 ms
37,028 KB
testcase_02 AC 54 ms
36,952 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 52 ms
36,800 KB
testcase_06 AC 53 ms
37,040 KB
testcase_07 AC 52 ms
37,176 KB
testcase_08 AC 54 ms
37,212 KB
testcase_09 AC 54 ms
36,968 KB
testcase_10 AC 56 ms
37,040 KB
testcase_11 AC 53 ms
37,176 KB
testcase_12 AC 54 ms
37,108 KB
testcase_13 AC 54 ms
36,824 KB
testcase_14 AC 53 ms
36,828 KB
testcase_15 AC 54 ms
36,832 KB
testcase_16 AC 53 ms
36,836 KB
testcase_17 AC 53 ms
37,132 KB
testcase_18 AC 55 ms
36,928 KB
testcase_19 AC 54 ms
36,812 KB
testcase_20 AC 54 ms
37,208 KB
testcase_21 AC 54 ms
36,836 KB
testcase_22 AC 54 ms
36,836 KB
testcase_23 AC 54 ms
36,832 KB
testcase_24 AC 55 ms
37,044 KB
testcase_25 AC 54 ms
37,084 KB
testcase_26 AC 55 ms
36,916 KB
testcase_27 AC 54 ms
36,828 KB
testcase_28 AC 53 ms
36,928 KB
testcase_29 AC 54 ms
37,100 KB
testcase_30 AC 55 ms
37,064 KB
testcase_31 AC 55 ms
36,932 KB
testcase_32 AC 54 ms
37,224 KB
testcase_33 AC 54 ms
37,060 KB
testcase_34 AC 54 ms
36,980 KB
testcase_35 AC 54 ms
36,968 KB
testcase_36 AC 55 ms
36,792 KB
testcase_37 AC 54 ms
37,172 KB
testcase_38 AC 53 ms
36,804 KB
testcase_39 AC 54 ms
37,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        int count = getCount(n);
        for (long i = Math.max(1, n - count); i <= n + count; i++) {
            if ((i ^ getHumming(i)) == n) {
                System.out.println(i);
                return;
            }
        }
        System.out.println(-1);
    }
    
    static int getHumming(long x) {
        long count = 0;
        while (x > 0) {
            count += x % 2;
            x /= 2;
        }
        return (int)count;
    }
    
    static int getCount(long x) {
        int count = 0;
        while (x > 0) {
            count++;
            x >>= 1;
        }
        return count;
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0