結果

問題 No.638 Sum of "not power of 2"
ユーザー silviasetitechsilviasetitech
提出日時 2020-03-15 13:44:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 1,339 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 76,200 KB
実行使用メモリ 42,748 KB
最終ジャッジ日時 2024-05-03 19:12:25
合計ジャッジ時間 4,586 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,240 KB
testcase_01 AC 120 ms
41,780 KB
testcase_02 AC 126 ms
41,276 KB
testcase_03 AC 112 ms
40,224 KB
testcase_04 AC 148 ms
42,284 KB
testcase_05 AC 129 ms
41,808 KB
testcase_06 AC 129 ms
42,580 KB
testcase_07 AC 130 ms
42,232 KB
testcase_08 AC 140 ms
42,284 KB
testcase_09 AC 140 ms
41,764 KB
testcase_10 AC 126 ms
41,928 KB
testcase_11 AC 128 ms
41,928 KB
testcase_12 AC 100 ms
41,608 KB
testcase_13 AC 138 ms
42,748 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