結果

問題 No.638 Sum of "not power of 2"
ユーザー silviasetitech
提出日時 2020-03-15 13:44:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 1,339 bytes
コンパイル時間 6,669 ms
コンパイル使用メモリ 78,352 KB
実行使用メモリ 54,840 KB
最終ジャッジ日時 2024-11-24 22:48:34
合計ジャッジ時間 4,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 *
 * @author silviase
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        No638Sumofnotpowerof2 solver = new No638Sumofnotpowerof2();
        solver.solve(1, in, out);
        out.close();
    }

    static class No638Sumofnotpowerof2 {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            long n = in.nextLong();
            long a = 3;
            while (a <= Math.min(10, n / 2)) {
                if (!Arith.isNibeki(a) && !(Arith.isNibeki(n - a))) {
                    out.println(a + " " + (n - a));
                    return;
                }
                a++;
            }

            out.println(-1);

        }

    }

    static class Arith {
        public static boolean isNibeki(long num) {
            while (num > 1) {
                if (num % 2 != 0) return false;
                num /= 2;
            }
            return true;
        }

    }
}

0