結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー mura40424mura40424
提出日時 2014-11-23 17:36:42
言語 Java
(openjdk 23)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 256 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 76,284 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2025-01-02 20:25:45
合計ジャッジ時間 5,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,572 KB
testcase_01 AC 109 ms
41,652 KB
testcase_02 AC 106 ms
41,672 KB
testcase_03 AC 106 ms
41,536 KB
testcase_04 AC 111 ms
41,660 KB
testcase_05 AC 114 ms
41,684 KB
testcase_06 AC 112 ms
41,548 KB
testcase_07 AC 108 ms
41,676 KB
testcase_08 AC 113 ms
41,596 KB
testcase_09 AC 110 ms
41,656 KB
testcase_10 AC 112 ms
41,588 KB
testcase_11 AC 105 ms
41,408 KB
testcase_12 AC 106 ms
41,584 KB
testcase_13 AC 114 ms
41,600 KB
testcase_14 AC 107 ms
41,592 KB
testcase_15 AC 112 ms
41,600 KB
testcase_16 AC 113 ms
41,704 KB
testcase_17 AC 108 ms
41,564 KB
testcase_18 AC 106 ms
41,428 KB
testcase_19 AC 117 ms
41,428 KB
testcase_20 AC 110 ms
41,664 KB
testcase_21 AC 108 ms
41,704 KB
testcase_22 AC 111 ms
41,836 KB
testcase_23 AC 108 ms
41,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner S = new Scanner(System.in);
		int N = S.nextInt();
		int x = 1;
		
		int i=0;
		for(i=0;x<N;i++){
			x*=2;
		}		

		System.out.println(i);
	}
}
0