結果

問題 No.1450 nahco314's First Problem
ユーザー tentententen
提出日時 2022-09-30 16:29:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,378 bytes
コンパイル時間 2,226 ms
コンパイル使用メモリ 77,256 KB
実行使用メモリ 37,216 KB
最終ジャッジ日時 2024-11-08 14:33:20
合計ジャッジ時間 7,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,916 KB
testcase_01 AC 51 ms
37,184 KB
testcase_02 AC 49 ms
37,068 KB
testcase_03 WA -
testcase_04 AC 51 ms
37,216 KB
testcase_05 AC 49 ms
37,200 KB
testcase_06 AC 48 ms
37,212 KB
testcase_07 WA -
testcase_08 AC 50 ms
37,080 KB
testcase_09 WA -
testcase_10 AC 49 ms
36,956 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 49 ms
36,708 KB
testcase_14 AC 49 ms
36,728 KB
testcase_15 WA -
testcase_16 AC 50 ms
36,840 KB
testcase_17 AC 48 ms
37,112 KB
testcase_18 AC 48 ms
37,216 KB
testcase_19 AC 50 ms
37,036 KB
testcase_20 AC 53 ms
37,000 KB
testcase_21 AC 49 ms
37,068 KB
testcase_22 AC 48 ms
37,036 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 52 ms
37,064 KB
testcase_26 AC 50 ms
37,180 KB
testcase_27 AC 49 ms
36,852 KB
testcase_28 AC 55 ms
36,944 KB
testcase_29 AC 53 ms
36,668 KB
testcase_30 AC 51 ms
37,216 KB
testcase_31 AC 50 ms
36,912 KB
testcase_32 AC 50 ms
36,956 KB
testcase_33 AC 51 ms
37,160 KB
testcase_34 AC 52 ms
37,068 KB
testcase_35 AC 48 ms
36,836 KB
testcase_36 AC 53 ms
36,668 KB
testcase_37 AC 50 ms
37,180 KB
testcase_38 AC 52 ms
37,084 KB
testcase_39 AC 51 ms
36,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long x = sc.nextLong();
        long n = x;
        n >>= 5;
        n <<= 5;
        for (int i = 0; i < (1 << 6); i++) {
            if (((n + i) ^ getPop(n + i)) == x) {
                System.out.println(n + 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 = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0