結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー 水野嶺水野嶺
提出日時 2020-05-25 13:43:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 325 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-10-13 02:03:14
合計ジャッジ時間 5,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,248 KB
testcase_01 AC 127 ms
41,344 KB
testcase_02 AC 114 ms
39,936 KB
testcase_03 AC 126 ms
41,160 KB
testcase_04 AC 130 ms
41,076 KB
testcase_05 AC 129 ms
40,960 KB
testcase_06 AC 124 ms
41,576 KB
testcase_07 AC 119 ms
41,216 KB
testcase_08 AC 124 ms
41,316 KB
testcase_09 AC 125 ms
41,136 KB
testcase_10 AC 127 ms
41,180 KB
testcase_11 AC 126 ms
41,428 KB
testcase_12 AC 129 ms
41,380 KB
testcase_13 AC 124 ms
41,204 KB
testcase_14 AC 122 ms
41,344 KB
testcase_15 AC 119 ms
41,316 KB
testcase_16 AC 127 ms
41,344 KB
testcase_17 AC 130 ms
39,976 KB
testcase_18 AC 134 ms
39,980 KB
testcase_19 AC 112 ms
40,036 KB
testcase_20 AC 123 ms
41,704 KB
testcase_21 AC 124 ms
41,272 KB
testcase_22 AC 126 ms
41,204 KB
testcase_23 AC 126 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		int  d = sc.nextInt();
		int count=0;
		int n =1;
		
		while(n < d){
		n = n*2;
		count += 1;
		}
		
		
		System.out.println(count);
	}
}
0