結果

問題 No.638 Sum of "not power of 2"
ユーザー Mcpu3Mcpu3
提出日時 2018-09-04 21:23:44
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 367 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 76,156 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-10-15 19:59:33
合計ジャッジ時間 4,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,484 KB
testcase_01 AC 118 ms
41,488 KB
testcase_02 AC 104 ms
40,972 KB
testcase_03 AC 104 ms
41,276 KB
testcase_04 AC 134 ms
41,344 KB
testcase_05 AC 119 ms
41,032 KB
testcase_06 AC 135 ms
41,568 KB
testcase_07 AC 135 ms
41,268 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 122 ms
41,200 KB
testcase_13 AC 121 ms
41,948 KB
権限があれば一括ダウンロードができます

ソースコード

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