結果

問題 No.638 Sum of "not power of 2"
ユーザー YamaKasaYamaKasa
提出日時 2018-09-30 17:13:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 509 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 76,208 KB
実行使用メモリ 56,164 KB
最終ジャッジ日時 2024-10-12 09:13:24
合計ジャッジ時間 5,059 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,104 KB
testcase_01 AC 134 ms
54,096 KB
testcase_02 WA -
testcase_03 AC 136 ms
54,116 KB
testcase_04 AC 145 ms
54,300 KB
testcase_05 AC 136 ms
54,088 KB
testcase_06 AC 142 ms
54,120 KB
testcase_07 AC 144 ms
54,308 KB
testcase_08 AC 147 ms
54,204 KB
testcase_09 AC 146 ms
54,244 KB
testcase_10 AC 145 ms
54,200 KB
testcase_11 AC 144 ms
54,240 KB
testcase_12 AC 136 ms
54,212 KB
testcase_13 AC 146 ms
54,100 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 == 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