結果

問題 No.638 Sum of "not power of 2"
ユーザー YamaKasaYamaKasa
提出日時 2018-09-30 17:23:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 1,000 ms
コード長 518 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 76,736 KB
実行使用メモリ 41,800 KB
最終ジャッジ日時 2024-10-12 09:13:53
合計ジャッジ時間 4,972 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,792 KB
testcase_01 AC 139 ms
41,648 KB
testcase_02 AC 136 ms
41,800 KB
testcase_03 AC 138 ms
41,388 KB
testcase_04 AC 148 ms
41,328 KB
testcase_05 AC 136 ms
41,704 KB
testcase_06 AC 147 ms
41,464 KB
testcase_07 AC 147 ms
41,796 KB
testcase_08 AC 144 ms
41,720 KB
testcase_09 AC 149 ms
41,488 KB
testcase_10 AC 144 ms
41,464 KB
testcase_11 AC 145 ms
41,612 KB
testcase_12 AC 138 ms
41,784 KB
testcase_13 AC 146 ms
41,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long N = scan.nextLong();
		scan.close();
		if(N == 1 || N == 2 || N == 3 || N == 4 || N == 5 || N == 7) {
			System.out.println(-1);
			System.exit(0);
		}
		if(Long.bitCount(N - 3) != 1) {
			long b = N - 3;
			System.out.println(3 + " " + b);
		}else if(Long.bitCount(N - 5) != 1) {
			long b = N - 5;
			System.out.println(5 + " " + b);
		}else {
			System.out.println(-1);
		}
	}
}
0