結果

問題 No.638 Sum of "not power of 2"
ユーザー Mcpu3
提出日時 2018-09-04 21:24:40
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

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