結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー nnsniconnsnico
提出日時 2019-05-01 21:27:10
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 945 ms / 5,000 ms
コード長 313 bytes
コンパイル時間 10,992 ms
コンパイル使用メモリ 271,444 KB
実行使用メモリ 62,792 KB
最終ジャッジ日時 2024-07-01 23:24:43
合計ジャッジ時間 33,910 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 906 ms
62,792 KB
testcase_01 AC 905 ms
62,500 KB
testcase_02 AC 910 ms
62,508 KB
testcase_03 AC 911 ms
62,432 KB
testcase_04 AC 934 ms
62,688 KB
testcase_05 AC 917 ms
62,496 KB
testcase_06 AC 936 ms
62,584 KB
testcase_07 AC 936 ms
62,248 KB
testcase_08 AC 937 ms
62,512 KB
testcase_09 AC 911 ms
62,556 KB
testcase_10 AC 905 ms
62,308 KB
testcase_11 AC 922 ms
62,700 KB
testcase_12 AC 938 ms
62,208 KB
testcase_13 AC 941 ms
62,492 KB
testcase_14 AC 927 ms
62,772 KB
testcase_15 AC 922 ms
62,552 KB
testcase_16 AC 931 ms
62,568 KB
testcase_17 AC 900 ms
62,700 KB
testcase_18 AC 904 ms
62,636 KB
testcase_19 AC 922 ms
62,492 KB
testcase_20 AC 933 ms
62,688 KB
testcase_21 AC 936 ms
62,540 KB
testcase_22 AC 912 ms
62,612 KB
testcase_23 AC 945 ms
62,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
  val n: Int = scala.io.StdIn.readInt()

  def stream(n: Int): Stream[Int] = Stream.cons(n, stream(n + n))

  // 0,1,2,4 ..
  val mugen: Stream[Int] = (0 #:: stream(1)).map(_ * 2)

  val targetValue = mugen.find(_ > n - 1)

  println(if (n <= 1) 0 else mugen.indexOf(targetValue.get))
}
0