結果

問題 No.638 Sum of "not power of 2"
ユーザー GrenacheGrenache
提出日時 2018-02-12 12:31:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 770 bytes
コンパイル時間 3,111 ms
コンパイル使用メモリ 76,548 KB
実行使用メモリ 41,904 KB
最終ジャッジ日時 2024-11-24 04:50:23
合計ジャッジ時間 5,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,276 KB
testcase_01 AC 111 ms
41,400 KB
testcase_02 AC 109 ms
41,420 KB
testcase_03 AC 119 ms
41,464 KB
testcase_04 AC 123 ms
41,440 KB
testcase_05 AC 120 ms
40,388 KB
testcase_06 AC 122 ms
41,628 KB
testcase_07 AC 121 ms
41,408 KB
testcase_08 AC 122 ms
41,480 KB
testcase_09 AC 118 ms
40,424 KB
testcase_10 AC 109 ms
41,708 KB
testcase_11 AC 110 ms
41,524 KB
testcase_12 AC 107 ms
41,904 KB
testcase_13 AC 119 ms
41,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder638 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		long n = sc.nextLong();

		Set<Long> hs = new HashSet<>();
		for (int i = 0; i < 61; i++) {
			hs.add(1L << i);
		}

		for (long i = 3; i <= n - i; i++) {
			if (hs.contains(i) || hs.contains(n - i)) {
				continue;
			}

			pr.printf("%d %d\n", i, n - i);
			return;
		}

		pr.println(-1);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0