結果

問題 No.638 Sum of "not power of 2"
ユーザー kusagame12kusagame12
提出日時 2023-11-11 21:39:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 890 bytes
コンパイル時間 2,966 ms
コンパイル使用メモリ 76,572 KB
実行使用メモリ 42,492 KB
最終ジャッジ日時 2024-09-26 02:53:55
合計ジャッジ時間 4,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,232 KB
testcase_01 AC 116 ms
41,268 KB
testcase_02 AC 115 ms
41,460 KB
testcase_03 AC 115 ms
41,152 KB
testcase_04 AC 140 ms
42,328 KB
testcase_05 AC 106 ms
41,220 KB
testcase_06 AC 141 ms
42,280 KB
testcase_07 AC 144 ms
42,084 KB
testcase_08 AC 132 ms
42,164 KB
testcase_09 WA -
testcase_10 AC 148 ms
42,444 KB
testcase_11 AC 137 ms
42,492 KB
testcase_12 AC 117 ms
41,248 KB
testcase_13 AC 142 ms
42,228 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 - 2 ; b > 1 ; b--){
            
            long a = n - b;
            
            if((b % 2 == 0 && !myJudge(b)) || (a % 2 == 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 == Math.pow(2 , i)){
                return false;
            }
        }
        return true;
        
    }
    
}
0