結果

問題 No.237 作図可能性
ユーザー ともきともき
提出日時 2015-07-06 00:06:38
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 986 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 9,547 ms
コンパイル使用メモリ 262,580 KB
実行使用メモリ 66,072 KB
最終ジャッジ日時 2024-06-29 02:10:09
合計ジャッジ時間 39,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 940 ms
65,444 KB
testcase_01 AC 974 ms
65,936 KB
testcase_02 AC 954 ms
65,932 KB
testcase_03 AC 950 ms
65,912 KB
testcase_04 AC 944 ms
65,988 KB
testcase_05 AC 959 ms
65,992 KB
testcase_06 AC 986 ms
65,816 KB
testcase_07 AC 956 ms
66,052 KB
testcase_08 AC 971 ms
65,720 KB
testcase_09 AC 967 ms
65,940 KB
testcase_10 AC 974 ms
65,896 KB
testcase_11 AC 938 ms
65,620 KB
testcase_12 AC 942 ms
65,744 KB
testcase_13 AC 931 ms
66,040 KB
testcase_14 AC 940 ms
65,912 KB
testcase_15 AC 964 ms
66,016 KB
testcase_16 AC 963 ms
65,948 KB
testcase_17 AC 964 ms
66,028 KB
testcase_18 AC 973 ms
65,884 KB
testcase_19 AC 962 ms
65,952 KB
testcase_20 AC 939 ms
66,012 KB
testcase_21 AC 934 ms
66,064 KB
testcase_22 AC 944 ms
66,072 KB
testcase_23 AC 944 ms
65,876 KB
testcase_24 AC 930 ms
66,040 KB
testcase_25 AC 954 ms
65,952 KB
testcase_26 AC 956 ms
65,996 KB
testcase_27 AC 936 ms
65,932 KB
testcase_28 AC 939 ms
65,652 KB
testcase_29 AC 960 ms
65,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine
import scala.collection.mutable.PriorityQueue
import scala.annotation.tailrec


object Main {
  def solve(n : Long) : Int = {
    val fermat_numbers = List[Long](3, 5, 17, 257, 65537)
    def big(c : Set[Long],k : Long) : Set[Long] = {
      c.withFilter(_*k <= n).map(_*k) ++ c
    }
    val init = (0l to Math.ceil(Math.log(n)/Math.log(2)).toLong).
                 map((k) => Math.round(Math.pow(2,k)).toLong).toSet
    val drawables_in_n = fermat_numbers.foldLeft(init)(big(_,_)).filter((i) => 3 <= i && i <= n)
    drawables_in_n.size
  }
  def main(args : Array[String]) : Unit = {
    val n = readLine().toLong
    println(solve(n))
  }
}
0