結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,832 KB
testcase_01 AC 53 ms
37,072 KB
testcase_02 AC 53 ms
36,804 KB
testcase_03 WA -
testcase_04 AC 54 ms
36,724 KB
testcase_05 AC 53 ms
36,948 KB
testcase_06 AC 52 ms
36,780 KB
testcase_07 WA -
testcase_08 AC 53 ms
36,608 KB
testcase_09 WA -
testcase_10 AC 53 ms
36,724 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 52 ms
36,408 KB
testcase_14 AC 54 ms
37,120 KB
testcase_15 WA -
testcase_16 AC 53 ms
36,892 KB
testcase_17 AC 53 ms
36,796 KB
testcase_18 AC 55 ms
36,576 KB
testcase_19 AC 54 ms
36,584 KB
testcase_20 AC 53 ms
36,780 KB
testcase_21 AC 53 ms
36,808 KB
testcase_22 AC 52 ms
36,720 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 54 ms
36,432 KB
testcase_26 AC 53 ms
37,012 KB
testcase_27 AC 54 ms
36,760 KB
testcase_28 AC 53 ms
36,920 KB
testcase_29 AC 54 ms
36,592 KB
testcase_30 AC 55 ms
36,552 KB
testcase_31 AC 54 ms
36,896 KB
testcase_32 AC 54 ms
36,764 KB
testcase_33 AC 53 ms
36,984 KB
testcase_34 AC 53 ms
36,732 KB
testcase_35 AC 53 ms
36,552 KB
testcase_36 AC 53 ms
36,920 KB
testcase_37 AC 54 ms
36,784 KB
testcase_38 AC 54 ms
36,816 KB
testcase_39 AC 52 ms
37,024 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