結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー htensaihtensai
提出日時 2020-02-13 18:49:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 323 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-10-06 06:18:30
合計ジャッジ時間 6,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,536 KB
testcase_01 AC 126 ms
41,536 KB
testcase_02 AC 131 ms
41,336 KB
testcase_03 AC 138 ms
41,664 KB
testcase_04 AC 128 ms
41,588 KB
testcase_05 AC 115 ms
41,364 KB
testcase_06 AC 127 ms
41,336 KB
testcase_07 AC 129 ms
41,272 KB
testcase_08 AC 130 ms
40,992 KB
testcase_09 AC 130 ms
41,384 KB
testcase_10 AC 131 ms
40,940 KB
testcase_11 AC 129 ms
40,960 KB
testcase_12 AC 129 ms
41,284 KB
testcase_13 AC 129 ms
41,044 KB
testcase_14 AC 131 ms
41,128 KB
testcase_15 AC 130 ms
41,076 KB
testcase_16 AC 132 ms
41,336 KB
testcase_17 AC 131 ms
41,652 KB
testcase_18 AC 129 ms
41,400 KB
testcase_19 AC 131 ms
41,156 KB
testcase_20 AC 130 ms
41,176 KB
testcase_21 AC 133 ms
41,460 KB
testcase_22 AC 129 ms
41,296 KB
testcase_23 AC 130 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int count = 0;
		int sum = 1;
		while (true) {
		    if (sum >= n) {
		        System.out.println(count);
		        return;
		    }
		    count++;
		    sum *= 2;
		}
   }
}
0