結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-11 13:36:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 2,438 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 55,968 KB
最終ジャッジ日時 2024-05-04 02:07:33
合計ジャッジ時間 5,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,968 KB
testcase_01 AC 111 ms
53,964 KB
testcase_02 AC 115 ms
53,964 KB
testcase_03 AC 102 ms
52,756 KB
testcase_04 AC 97 ms
52,704 KB
testcase_05 AC 104 ms
53,764 KB
testcase_06 AC 97 ms
52,976 KB
testcase_07 AC 107 ms
53,852 KB
testcase_08 AC 112 ms
54,196 KB
testcase_09 AC 99 ms
52,948 KB
testcase_10 AC 113 ms
54,028 KB
testcase_11 AC 99 ms
52,952 KB
testcase_12 AC 108 ms
54,372 KB
testcase_13 AC 98 ms
53,068 KB
testcase_14 AC 98 ms
52,984 KB
testcase_15 AC 107 ms
53,920 KB
testcase_16 AC 96 ms
52,676 KB
testcase_17 AC 110 ms
55,968 KB
testcase_18 AC 98 ms
52,564 KB
testcase_19 AC 111 ms
54,028 KB
testcase_20 AC 100 ms
53,236 KB
testcase_21 AC 101 ms
52,940 KB
testcase_22 AC 114 ms
53,960 KB
testcase_23 AC 119 ms
53,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Question047
{
	public static void main(String[] args)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int n = scan.nextInt();
		int pow = 1;
		int cnt = 0;
		for(cnt=0; pow<n; cnt++){
			pow = pow * 2;
		}
		
		System.out.println(cnt);		
	}
}
0