結果

問題 No.638 Sum of "not power of 2"
ユーザー tentententen
提出日時 2022-10-06 14:41:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 68 ms / 1,000 ms
コード長 1,336 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 75,496 KB
実行使用メモリ 52,920 KB
最終ジャッジ日時 2023-08-31 01:03:18
合計ジャッジ時間 3,538 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
50,172 KB
testcase_01 AC 38 ms
49,912 KB
testcase_02 AC 38 ms
50,028 KB
testcase_03 AC 38 ms
49,904 KB
testcase_04 AC 60 ms
51,192 KB
testcase_05 AC 38 ms
50,000 KB
testcase_06 AC 65 ms
51,436 KB
testcase_07 AC 60 ms
50,820 KB
testcase_08 AC 68 ms
52,920 KB
testcase_09 AC 61 ms
51,488 KB
testcase_10 AC 62 ms
51,152 KB
testcase_11 AC 62 ms
51,376 KB
testcase_12 AC 39 ms
49,932 KB
testcase_13 AC 64 ms
51,172 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();
        HashSet<Long> prohibited = new HashSet<>();
        for (int i = 0; i < 64; i++) {
            prohibited.add(1L << i);
        }
        for (long i = 1; i < n; i++) {
            if (prohibited.contains(i) || prohibited.contains(n - i)) {
                continue;
            }
            System.out.println(i + " " + (n - i));
            return;
        }
        System.out.println(-1);
    }
}
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