結果

問題 No.638 Sum of "not power of 2"
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-17 19:32:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 575 bytes
コンパイル時間 2,363 ms
コンパイル使用メモリ 76,296 KB
実行使用メモリ 42,876 KB
最終ジャッジ日時 2024-07-07 13:46:28
合計ジャッジ時間 4,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,808 KB
testcase_01 AC 112 ms
41,416 KB
testcase_02 AC 118 ms
41,896 KB
testcase_03 AC 105 ms
41,688 KB
testcase_04 AC 114 ms
41,440 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 134 ms
42,616 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 134 ms
42,200 KB
testcase_11 AC 147 ms
42,264 KB
testcase_12 AC 113 ms
41,596 KB
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long n = sc.nextLong();
    String ans = "-1";
    if(n == 6) ans = 3 + " " + 3;
    if(n > 6) { 
      for(long i = 3; i <= 6; i++) {
        if(i != 4) {
          long t = n - i;
          int p = 0;
          while(t % 2 == 0) {
            t /= 2;
            if(t % 2 == 1) p++;
          }
          if(p > 0) {
            ans = i + " " + (n - i);
            break;
          } 
        }
      }
    }
    System.out.println(ans);
  }
}
0