結果

問題 No.2795 Perfect Number
ユーザー tentententen
提出日時 2024-07-01 09:08:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,379 bytes
コンパイル時間 2,417 ms
コンパイル使用メモリ 78,724 KB
実行使用メモリ 50,608 KB
最終ジャッジ日時 2024-07-01 09:09:02
合計ジャッジ時間 5,903 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,036 KB
testcase_01 AC 56 ms
50,348 KB
testcase_02 AC 54 ms
50,004 KB
testcase_03 WA -
testcase_04 AC 55 ms
50,052 KB
testcase_05 AC 55 ms
50,208 KB
testcase_06 AC 54 ms
49,816 KB
testcase_07 AC 54 ms
50,056 KB
testcase_08 AC 54 ms
50,192 KB
testcase_09 AC 54 ms
50,240 KB
testcase_10 AC 55 ms
50,356 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 54 ms
50,152 KB
testcase_15 AC 55 ms
50,172 KB
testcase_16 AC 56 ms
50,056 KB
testcase_17 AC 54 ms
50,608 KB
testcase_18 AC 56 ms
50,352 KB
testcase_19 AC 54 ms
50,468 KB
testcase_20 AC 54 ms
50,012 KB
testcase_21 AC 54 ms
50,300 KB
testcase_22 AC 54 ms
50,196 KB
testcase_23 AC 55 ms
50,324 KB
testcase_24 AC 54 ms
50,484 KB
testcase_25 AC 55 ms
50,440 KB
testcase_26 AC 55 ms
49,884 KB
testcase_27 AC 55 ms
50,068 KB
testcase_28 AC 55 ms
49,872 KB
testcase_29 AC 54 ms
50,380 KB
testcase_30 AC 54 ms
50,132 KB
testcase_31 AC 55 ms
50,056 KB
testcase_32 AC 55 ms
50,040 KB
testcase_33 AC 55 ms
50,052 KB
testcase_34 AC 55 ms
49,868 KB
testcase_35 AC 55 ms
50,144 KB
testcase_36 AC 55 ms
50,396 KB
testcase_37 AC 54 ms
49,732 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 n = sc.nextLong();
        int a = 0;
        while (n % 2 == 0) {
            a++;
            n /= 2;
        }
        n++;
        int b = 0;
        while (n % 2 == 0) {
            b++;
            n /= 2;
        }
        System.out.println((n == 1 && a == b - 1) ? "Yes" : "No");
    }
}
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