結果
問題 | No.47 ポケットを叩くとビスケットが2倍 |
ユーザー | YamaKasa |
提出日時 | 2018-04-19 16:11:06 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 475 bytes |
コンパイル時間 | 1,989 ms |
コンパイル使用メモリ | 74,472 KB |
実行使用メモリ | 54,380 KB |
最終ジャッジ日時 | 2024-06-27 04:49:47 |
合計ジャッジ時間 | 6,197 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 123 ms
40,932 KB |
testcase_02 | AC | 129 ms
41,220 KB |
testcase_03 | AC | 114 ms
40,196 KB |
testcase_04 | WA | - |
testcase_05 | AC | 128 ms
41,120 KB |
testcase_06 | AC | 131 ms
41,312 KB |
testcase_07 | AC | 133 ms
41,964 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 128 ms
41,484 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
import java.util.Scanner; public class Main{ public static void main(String[] args) { //System.out.println("数字"); Scanner scanner = new Scanner(System.in); int N = scanner.nextInt(); scanner.close(); int n = 0; int y; boolean flag = true; // while文の繰り返し回数を20未満とした while(flag) { y = N - (int) Math.pow(2, n); if(y <= 0) { break; } if(n > 20) { flag = false; } n++; } System.out.println(n); } }