結果

問題 No.638 Sum of "not power of 2"
ユーザー silviasetitechsilviasetitech
提出日時 2020-03-15 13:44:19
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,032 KB
testcase_01 AC 124 ms
54,092 KB
testcase_02 AC 120 ms
53,732 KB
testcase_03 AC 125 ms
53,984 KB
testcase_04 AC 152 ms
54,804 KB
testcase_05 AC 115 ms
53,996 KB
testcase_06 AC 138 ms
54,840 KB
testcase_07 AC 137 ms
54,760 KB
testcase_08 AC 137 ms
54,752 KB
testcase_09 AC 147 ms
54,632 KB
testcase_10 AC 137 ms
54,584 KB
testcase_11 AC 148 ms
54,832 KB
testcase_12 AC 107 ms
53,028 KB
testcase_13 AC 132 ms
54,672 KB
権限があれば一括ダウンロードができます

ソースコード

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