結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー skkbevskkbev
提出日時 2018-12-04 22:42:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 1,810 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 55,468 KB
最終ジャッジ日時 2024-07-08 09:44:20
合計ジャッジ時間 5,371 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,988 KB
testcase_01 AC 102 ms
52,792 KB
testcase_02 AC 105 ms
53,044 KB
testcase_03 AC 110 ms
53,636 KB
testcase_04 AC 110 ms
53,824 KB
testcase_05 WA -
testcase_06 AC 103 ms
52,804 KB
testcase_07 AC 103 ms
52,828 KB
testcase_08 AC 111 ms
53,964 KB
testcase_09 AC 114 ms
53,800 KB
testcase_10 AC 100 ms
52,680 KB
testcase_11 AC 110 ms
53,936 KB
testcase_12 AC 100 ms
53,148 KB
testcase_13 AC 104 ms
52,936 KB
testcase_14 AC 101 ms
52,620 KB
testcase_15 AC 98 ms
52,536 KB
testcase_16 AC 109 ms
53,764 KB
testcase_17 AC 113 ms
53,904 KB
testcase_18 AC 109 ms
53,544 KB
testcase_19 AC 108 ms
54,060 KB
testcase_20 AC 100 ms
52,580 KB
testcase_21 AC 104 ms
52,956 KB
testcase_22 AC 96 ms
52,176 KB
testcase_23 AC 112 ms
53,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int s = 1;
        int t = 0;
        for (int i = 0; i < n; i++) {
            s = s * 2;
            t++;
            if (s >= n) {
                System.out.println(t);
                break;
            }    
        }
    }
}
0