結果

問題 No.638 Sum of "not power of 2"
ユーザー Mcpu3
提出日時 2018-09-04 21:23:44
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 367 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 76,156 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-10-15 19:59:33
合計ジャッジ時間 4,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8 RE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		long n=sc.nextInt(),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