結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー kaiyori_labkaiyori_lab
提出日時 2014-10-21 23:59:07
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 869 ms / 5,000 ms
コード長 241 bytes
コンパイル時間 11,282 ms
コンパイル使用メモリ 262,868 KB
実行使用メモリ 65,144 KB
最終ジャッジ日時 2024-06-28 21:45:25
合計ジャッジ時間 30,207 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 809 ms
64,840 KB
testcase_01 AC 814 ms
64,960 KB
testcase_02 AC 800 ms
64,616 KB
testcase_03 AC 834 ms
65,004 KB
testcase_04 AC 812 ms
65,036 KB
testcase_05 AC 836 ms
64,992 KB
testcase_06 AC 825 ms
64,876 KB
testcase_07 AC 848 ms
65,144 KB
testcase_08 AC 814 ms
64,812 KB
testcase_09 AC 833 ms
64,956 KB
testcase_10 AC 824 ms
64,876 KB
testcase_11 AC 869 ms
64,956 KB
testcase_12 AC 840 ms
64,952 KB
testcase_13 AC 810 ms
64,936 KB
testcase_14 AC 816 ms
64,832 KB
testcase_15 AC 805 ms
65,016 KB
testcase_16 AC 824 ms
64,844 KB
testcase_17 AC 837 ms
64,952 KB
testcase_18 AC 813 ms
65,032 KB
testcase_19 AC 813 ms
64,992 KB
testcase_20 AC 812 ms
64,968 KB
testcase_21 AC 803 ms
64,868 KB
testcase_22 AC 843 ms
64,956 KB
testcase_23 AC 828 ms
64,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App{

	val sc = new java.util.Scanner(System.in)
	val n = sc.nextInt

	def solve(bis: Int, times: Int): Unit = bis match{
		case b if(b >= n) => println(times)
		case b => solve(b*2, times + 1)
	}
	solve(1, 0)
}
0