結果

問題 No.638 Sum of "not power of 2"
ユーザー Mcpu3Mcpu3
提出日時 2018-09-04 21:24:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 368 bytes
コンパイル時間 2,275 ms
コンパイル使用メモリ 76,772 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-10-15 20:03:48
合計ジャッジ時間 4,950 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,984 KB
testcase_01 AC 128 ms
41,304 KB
testcase_02 AC 130 ms
40,888 KB
testcase_03 AC 130 ms
40,972 KB
testcase_04 AC 132 ms
40,240 KB
testcase_05 AC 130 ms
41,140 KB
testcase_06 AC 145 ms
41,244 KB
testcase_07 AC 146 ms
41,172 KB
testcase_08 AC 145 ms
41,112 KB
testcase_09 AC 141 ms
41,272 KB
testcase_10 AC 134 ms
40,136 KB
testcase_11 AC 146 ms
41,304 KB
testcase_12 AC 129 ms
40,892 KB
testcase_13 AC 132 ms
40,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong(),i;
		sc.close();
		if(n-3>2&&n!=7) {
			for(i=2;i<60;++i) if((long)Math.pow(2, i)==n-3) break;
			if(i==60) System.out.print("3 "+(n-3));
			else System.out.print("5 "+(n-5));
		}
		else System.out.print(-1);
	}
}
0