結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー k_kadorak_kadora
提出日時 2015-05-20 03:36:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 3,339 ms
コンパイル使用メモリ 75,872 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-07-06 05:47:05
合計ジャッジ時間 7,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,836 KB
testcase_01 AC 134 ms
54,060 KB
testcase_02 AC 134 ms
54,092 KB
testcase_03 AC 135 ms
54,192 KB
testcase_04 AC 134 ms
54,040 KB
testcase_05 AC 136 ms
54,100 KB
testcase_06 AC 135 ms
53,592 KB
testcase_07 AC 135 ms
53,908 KB
testcase_08 AC 133 ms
54,080 KB
testcase_09 AC 134 ms
54,108 KB
testcase_10 AC 135 ms
53,824 KB
testcase_11 AC 136 ms
54,092 KB
testcase_12 AC 134 ms
53,692 KB
testcase_13 AC 133 ms
54,008 KB
testcase_14 AC 135 ms
53,824 KB
testcase_15 AC 132 ms
53,752 KB
testcase_16 AC 135 ms
53,940 KB
testcase_17 AC 132 ms
53,752 KB
testcase_18 AC 136 ms
53,756 KB
testcase_19 AC 137 ms
54,032 KB
testcase_20 AC 135 ms
54,196 KB
testcase_21 AC 136 ms
53,900 KB
testcase_22 AC 136 ms
53,892 KB
testcase_23 AC 134 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Biscuit{
	public static void main(String[] arg){
		int n,res=0;
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		while(n != 1){
			if(n%2 ==1){
				n = (n+1) /2;
			}else{
				n = n/2;
			}
			res++;
		}
		System.out.println(res);
	}
}
0