結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー papipenpapipen
提出日時 2017-03-27 21:33:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-07-06 09:45:46
合計ジャッジ時間 5,719 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,844 KB
testcase_01 AC 102 ms
52,744 KB
testcase_02 AC 101 ms
52,716 KB
testcase_03 AC 108 ms
53,712 KB
testcase_04 AC 110 ms
53,896 KB
testcase_05 AC 109 ms
53,708 KB
testcase_06 AC 114 ms
53,948 KB
testcase_07 AC 109 ms
53,708 KB
testcase_08 AC 101 ms
53,008 KB
testcase_09 AC 121 ms
54,244 KB
testcase_10 AC 115 ms
54,032 KB
testcase_11 AC 115 ms
54,092 KB
testcase_12 AC 100 ms
53,004 KB
testcase_13 AC 98 ms
52,580 KB
testcase_14 AC 102 ms
53,012 KB
testcase_15 AC 100 ms
52,716 KB
testcase_16 AC 111 ms
53,860 KB
testcase_17 AC 118 ms
53,864 KB
testcase_18 AC 107 ms
53,844 KB
testcase_19 AC 117 ms
54,132 KB
testcase_20 AC 100 ms
53,020 KB
testcase_21 AC 101 ms
53,112 KB
testcase_22 AC 117 ms
53,668 KB
testcase_23 AC 106 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Bisuketto{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		int num = 0;
		int i = 0;
		while(true){
			num = (int)Math.pow(2 , i);
			if(num >= N){
				System.out.println(i);
				break;
			}
			i++;
		}
	}
}
0