結果

問題 No.638 Sum of "not power of 2"
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-17 19:35:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 76,356 KB
実行使用メモリ 56,764 KB
最終ジャッジ日時 2024-07-07 13:46:38
合計ジャッジ時間 4,912 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,032 KB
testcase_01 AC 119 ms
54,004 KB
testcase_02 AC 112 ms
52,760 KB
testcase_03 AC 114 ms
54,024 KB
testcase_04 AC 119 ms
54,124 KB
testcase_05 WA -
testcase_06 AC 141 ms
54,648 KB
testcase_07 AC 133 ms
54,864 KB
testcase_08 AC 137 ms
55,036 KB
testcase_09 WA -
testcase_10 AC 137 ms
54,680 KB
testcase_11 AC 140 ms
54,932 KB
testcase_12 AC 114 ms
54,108 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;
          if((t > 1) && (t % 2 == 1)) p++;
          while(t % 2 == 0) {
            t /= 2;
            if(t % 2 == 1) p++;
          }
          if(p > 0) {
            ans = i + " " + (n - i);
            break;
          } 
        }
      }
    }
    System.out.println(ans);
  }
}
0