結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー リチウムリチウム
提出日時 2014-10-25 01:01:45
言語 Java
(openjdk 23)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 312 bytes
コンパイル時間 4,971 ms
コンパイル使用メモリ 73,760 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-12-30 13:33:33
合計ジャッジ時間 7,438 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,256 KB
testcase_01 AC 127 ms
39,952 KB
testcase_02 AC 139 ms
41,080 KB
testcase_03 AC 121 ms
39,780 KB
testcase_04 AC 141 ms
41,056 KB
testcase_05 AC 133 ms
40,944 KB
testcase_06 AC 139 ms
40,884 KB
testcase_07 AC 138 ms
41,304 KB
testcase_08 AC 138 ms
41,064 KB
testcase_09 AC 135 ms
40,680 KB
testcase_10 AC 141 ms
41,260 KB
testcase_11 AC 138 ms
41,268 KB
testcase_12 AC 138 ms
41,188 KB
testcase_13 AC 139 ms
41,424 KB
testcase_14 AC 145 ms
41,348 KB
testcase_15 AC 142 ms
41,356 KB
testcase_16 AC 134 ms
40,588 KB
testcase_17 AC 143 ms
41,296 KB
testcase_18 AC 145 ms
41,064 KB
testcase_19 AC 139 ms
40,432 KB
testcase_20 AC 145 ms
41,312 KB
testcase_21 AC 144 ms
41,088 KB
testcase_22 AC 133 ms
39,856 KB
testcase_23 AC 133 ms
40,256 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 x=1;
		int ans=0;
		if(n==1){System.out.println(0);return;}
		while(true){
			x*=2;
			ans++;
			if(x>=n)break;
		}
		System.out.println(ans);
	}
	}
0