結果

問題 No.638 Sum of "not power of 2"
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-22 19:13:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 1,000 ms
コード長 489 bytes
コンパイル時間 2,137 ms
コンパイル使用メモリ 76,576 KB
実行使用メモリ 42,652 KB
最終ジャッジ日時 2024-10-02 08:13:42
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,460 KB
testcase_01 AC 131 ms
41,392 KB
testcase_02 AC 131 ms
41,276 KB
testcase_03 AC 131 ms
41,348 KB
testcase_04 AC 166 ms
42,524 KB
testcase_05 AC 134 ms
41,056 KB
testcase_06 AC 169 ms
42,392 KB
testcase_07 AC 169 ms
42,268 KB
testcase_08 AC 167 ms
42,280 KB
testcase_09 AC 165 ms
42,652 KB
testcase_10 AC 166 ms
42,476 KB
testcase_11 AC 170 ms
42,320 KB
testcase_12 AC 132 ms
41,116 KB
testcase_13 AC 168 ms
42,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		long n = sc.nextLong();
		int i = 1;
		
		boolean  b = false;
		for (; i<n; i++) {
			if (check(i)==false && check(n-i)==false) {b=true; break;}
		}
		
		if (b==true) {System.out.println(i+" "+(n-i));}
		else {System.out.println(-1);}
	}
	
	static boolean check (long n) {
		while (n != 1) {
			if (n%2 == 1) {return false;}
			n /= 2;
		}
		return true;
	}
}
0