結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー takutakutakutaku
提出日時 2020-09-17 11:48:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 2,728 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-06-22 06:28:17
合計ジャッジ時間 5,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,992 KB
testcase_01 AC 117 ms
54,000 KB
testcase_02 AC 104 ms
52,788 KB
testcase_03 AC 104 ms
52,488 KB
testcase_04 AC 111 ms
53,976 KB
testcase_05 AC 112 ms
53,972 KB
testcase_06 AC 100 ms
52,928 KB
testcase_07 AC 107 ms
53,912 KB
testcase_08 AC 107 ms
53,200 KB
testcase_09 AC 111 ms
53,920 KB
testcase_10 AC 118 ms
54,252 KB
testcase_11 AC 117 ms
54,080 KB
testcase_12 AC 96 ms
52,484 KB
testcase_13 AC 113 ms
53,900 KB
testcase_14 AC 101 ms
52,724 KB
testcase_15 AC 103 ms
53,232 KB
testcase_16 AC 95 ms
52,452 KB
testcase_17 AC 102 ms
52,752 KB
testcase_18 AC 103 ms
52,736 KB
testcase_19 AC 116 ms
53,816 KB
testcase_20 AC 115 ms
53,944 KB
testcase_21 AC 114 ms
54,172 KB
testcase_22 AC 101 ms
52,900 KB
testcase_23 AC 122 ms
53,980 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 m = 1;
        int count = 0;
        
        while(m < n) {
            m = m * 2;
            count++;
        }
        
        System.out.println(count);
	}
}

0