結果
問題 | No.638 Sum of "not power of 2" |
ユーザー | kusagame12 |
提出日時 | 2023-11-11 21:33:12 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 981 bytes |
コンパイル時間 | 2,391 ms |
コンパイル使用メモリ | 74,404 KB |
実行使用メモリ | 56,056 KB |
最終ジャッジ日時 | 2024-09-26 02:53:28 |
合計ジャッジ時間 | 4,635 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
54,016 KB |
testcase_01 | WA | - |
testcase_02 | AC | 118 ms
53,972 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 121 ms
54,172 KB |
testcase_13 | WA | - |
ソースコード
import java.util.*; /* * 行列の積を計算する。 * rs1 = na行 × ma列 * rs2 = nb行 × mb列 * ans = rs1*rs2(na行 × mb列) * 計算はcclcメソッドで行う。 * */ public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); long ans = -1; for(long a = n - 1 ; a > 0 ; a--){ long b = n - a; if((b % 2 == 0 && !myJudge(b)) || (a % 2 == 0 && !myJudge(a))){ continue; } ans = b; break; } System.out.println(ans); } private static boolean myJudge(long num){ for(int i = 1 ; i < 61 ; i++){ if(num == Math.pow(2 , i)){ return false; } } return true; } }