結果
問題 | No.638 Sum of "not power of 2" |
ユーザー | takeya_okino |
提出日時 | 2019-09-17 19:28:12 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 470 bytes |
コンパイル時間 | 2,366 ms |
コンパイル使用メモリ | 74,072 KB |
実行使用メモリ | 61,824 KB |
最終ジャッジ日時 | 2024-07-07 13:46:16 |
合計ジャッジ時間 | 5,270 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 104 ms
59,888 KB |
testcase_01 | AC | 113 ms
53,884 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
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; 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); } }