結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー nnsniconnsnico
提出日時 2019-05-01 21:20:56
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 8,810 ms
コンパイル使用メモリ 265,804 KB
実行使用メモリ 63,060 KB
最終ジャッジ日時 2024-07-01 23:21:21
合計ジャッジ時間 33,657 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 923 ms
62,900 KB
testcase_01 AC 916 ms
63,052 KB
testcase_02 AC 913 ms
62,416 KB
testcase_03 AC 918 ms
62,780 KB
testcase_04 AC 946 ms
63,060 KB
testcase_05 WA -
testcase_06 AC 923 ms
62,768 KB
testcase_07 AC 931 ms
62,996 KB
testcase_08 AC 928 ms
62,652 KB
testcase_09 AC 918 ms
62,944 KB
testcase_10 AC 943 ms
62,792 KB
testcase_11 AC 945 ms
62,512 KB
testcase_12 AC 954 ms
62,588 KB
testcase_13 AC 929 ms
62,924 KB
testcase_14 AC 952 ms
62,652 KB
testcase_15 AC 938 ms
62,676 KB
testcase_16 AC 1,010 ms
62,820 KB
testcase_17 AC 999 ms
62,840 KB
testcase_18 AC 923 ms
62,432 KB
testcase_19 AC 911 ms
62,940 KB
testcase_20 AC 923 ms
63,028 KB
testcase_21 AC 920 ms
62,700 KB
testcase_22 AC 958 ms
62,780 KB
testcase_23 AC 940 ms
63,024 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))

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

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

  println(mugen.indexOf(targetValue.get))
}
0