結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,300 KB
testcase_01 AC 102 ms
41,304 KB
testcase_02 AC 108 ms
41,380 KB
testcase_03 AC 115 ms
41,332 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 103 ms
41,288 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();
    long ans = -1;
    if(n == 6) ans = 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;
            break;
          } 
        }
      }
    }
    System.out.println(ans);
  }
}
0