結果

問題 No.638 Sum of "not power of 2"
ユーザー kusagame12kusagame12
提出日時 2023-11-11 22:05:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 1,000 ms
コード長 885 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 76,492 KB
実行使用メモリ 42,544 KB
最終ジャッジ日時 2024-09-26 02:54:02
合計ジャッジ時間 4,749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,212 KB
testcase_01 AC 126 ms
41,268 KB
testcase_02 AC 125 ms
41,356 KB
testcase_03 AC 125 ms
41,064 KB
testcase_04 AC 152 ms
42,440 KB
testcase_05 AC 131 ms
40,996 KB
testcase_06 AC 151 ms
42,280 KB
testcase_07 AC 150 ms
42,060 KB
testcase_08 AC 154 ms
42,316 KB
testcase_09 AC 151 ms
42,196 KB
testcase_10 AC 150 ms
42,296 KB
testcase_11 AC 146 ms
42,096 KB
testcase_12 AC 119 ms
41,088 KB
testcase_13 AC 157 ms
42,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        
        long n = sc.nextLong();
        
        long ansA = -1;
        long ansB = -1;
        for(long b = n - 2l ; b > 1 ; b--){

            long a = n - b;

            if((b % 2l == 0 && !myJudge(b)) || (a % 2l == 0 && !myJudge(a))){
                continue;
            }
            
            ansA = a;
            ansB = b;
            break;
            
        }
        
        System.out.println(ansA == -1 ? -1 : ansA+" "+ansB);
           
    }
    
    private static boolean myJudge(long num){
        
        for(int i = 1 ; i < 61 ; i++){
            if(num == (long) Math.pow(2 , i)){
                return false;
            }
        }
        return true;
        
    }
    
}








0