結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー キョウチクキョウチク
提出日時 2022-05-15 17:52:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 304 bytes
コンパイル時間 3,349 ms
コンパイル使用メモリ 75,264 KB
実行使用メモリ 54,524 KB
最終ジャッジ日時 2024-09-13 03:02:44
合計ジャッジ時間 7,435 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,060 KB
testcase_01 AC 129 ms
54,196 KB
testcase_02 AC 130 ms
54,200 KB
testcase_03 AC 130 ms
53,808 KB
testcase_04 AC 128 ms
54,052 KB
testcase_05 AC 130 ms
54,068 KB
testcase_06 AC 128 ms
53,740 KB
testcase_07 AC 128 ms
54,096 KB
testcase_08 AC 129 ms
54,144 KB
testcase_09 AC 129 ms
53,936 KB
testcase_10 AC 130 ms
54,040 KB
testcase_11 AC 130 ms
54,120 KB
testcase_12 AC 128 ms
53,856 KB
testcase_13 AC 131 ms
54,064 KB
testcase_14 AC 129 ms
53,996 KB
testcase_15 AC 128 ms
53,996 KB
testcase_16 AC 129 ms
53,796 KB
testcase_17 AC 130 ms
53,888 KB
testcase_18 AC 130 ms
53,920 KB
testcase_19 AC 130 ms
54,524 KB
testcase_20 AC 130 ms
53,964 KB
testcase_21 AC 129 ms
53,868 KB
testcase_22 AC 129 ms
54,436 KB
testcase_23 AC 130 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test10 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String line;
    line=sc.nextLine();
    int n=Integer.parseInt(line);
    int m=0;
    for(int i=1;i<n;i+=i){
      m++;
    }
    System.out.println(m);
    sc.close();
  }
}
0