結果

問題 No.638 Sum of "not power of 2"
ユーザー tentententen
提出日時 2020-09-05 11:25:09
言語 Java
(openjdk 23)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 511 bytes
コンパイル時間 3,898 ms
コンパイル使用メモリ 76,420 KB
実行使用メモリ 42,404 KB
最終ジャッジ日時 2024-11-28 00:01:16
合計ジャッジ時間 4,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,112 KB
testcase_01 AC 110 ms
40,840 KB
testcase_02 AC 105 ms
39,560 KB
testcase_03 AC 103 ms
40,020 KB
testcase_04 AC 143 ms
42,336 KB
testcase_05 AC 104 ms
40,000 KB
testcase_06 AC 136 ms
42,088 KB
testcase_07 AC 130 ms
41,704 KB
testcase_08 AC 132 ms
42,192 KB
testcase_09 AC 132 ms
42,404 KB
testcase_10 AC 123 ms
42,272 KB
testcase_11 AC 128 ms
42,224 KB
testcase_12 AC 110 ms
40,156 KB
testcase_13 AC 134 ms
42,040 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