結果

問題 No.638 Sum of "not power of 2"
ユーザー tentententen
提出日時 2020-09-05 11:25:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 189 ms / 1,000 ms
コード長 511 bytes
コンパイル時間 2,552 ms
コンパイル使用メモリ 77,336 KB
実行使用メモリ 42,808 KB
最終ジャッジ日時 2024-05-05 22:38:08
合計ジャッジ時間 5,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,140 KB
testcase_01 AC 133 ms
40,920 KB
testcase_02 AC 134 ms
41,200 KB
testcase_03 AC 134 ms
41,104 KB
testcase_04 AC 161 ms
42,548 KB
testcase_05 AC 135 ms
41,408 KB
testcase_06 AC 158 ms
42,164 KB
testcase_07 AC 162 ms
42,320 KB
testcase_08 AC 189 ms
42,632 KB
testcase_09 AC 163 ms
42,496 KB
testcase_10 AC 163 ms
42,244 KB
testcase_11 AC 163 ms
42,808 KB
testcase_12 AC 138 ms
41,164 KB
testcase_13 AC 160 ms
42,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	long n = sc.nextLong();
    	long base = 1;
    	HashSet<Long> ng = new HashSet<>();
    	while (base <= n) {
    	    ng.add(base);
    	    base *= 2;
    	}
    	for (long i = 1; i <= n / 2; i++) {
    	    if (!ng.contains(i) && !ng.contains(n - i)) {
    	        System.out.println(i + " " + (n - i));
    	        return;
    	    }
    	}
    	System.out.println(-1);
	}
}
0