結果

問題 No.237 作図可能性
ユーザー Nobita GomuNobita Gomu
提出日時 2017-10-05 00:31:50
言語 F#
(F# 4.0)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 12,551 ms
コンパイル使用メモリ 186,348 KB
実行使用メモリ 35,616 KB
最終ジャッジ日時 2024-04-28 06:07:47
合計ジャッジ時間 22,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
35,344 KB
testcase_01 AC 326 ms
34,804 KB
testcase_02 AC 325 ms
35,232 KB
testcase_03 AC 329 ms
35,248 KB
testcase_04 AC 326 ms
35,508 KB
testcase_05 AC 328 ms
35,268 KB
testcase_06 AC 326 ms
35,400 KB
testcase_07 AC 322 ms
35,508 KB
testcase_08 AC 321 ms
35,420 KB
testcase_09 AC 323 ms
35,424 KB
testcase_10 AC 317 ms
35,572 KB
testcase_11 AC 328 ms
34,796 KB
testcase_12 AC 324 ms
34,800 KB
testcase_13 AC 320 ms
35,376 KB
testcase_14 AC 328 ms
35,356 KB
testcase_15 AC 328 ms
35,264 KB
testcase_16 AC 334 ms
35,268 KB
testcase_17 AC 330 ms
35,400 KB
testcase_18 AC 320 ms
35,544 KB
testcase_19 AC 325 ms
35,420 KB
testcase_20 AC 333 ms
35,428 KB
testcase_21 AC 321 ms
35,276 KB
testcase_22 AC 323 ms
35,432 KB
testcase_23 AC 331 ms
35,408 KB
testcase_24 AC 326 ms
35,416 KB
testcase_25 AC 321 ms
34,888 KB
testcase_26 AC 320 ms
35,296 KB
testcase_27 AC 320 ms
35,424 KB
testcase_28 AC 323 ms
35,616 KB
testcase_29 AC 323 ms
35,412 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (324 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let inline pow b e =
    let rec iter e acc =
        match e with
        | i when i = LanguagePrimitives.GenericZero -> acc
        | _ -> iter (e - LanguagePrimitives.GenericOne) (acc * b)
    iter e LanguagePrimitives.GenericOne

let rec product lst =
    match lst with
    | [] -> Seq.singleton []
    | x::xs -> Seq.collect (fun y -> product xs |> Seq.map (fun z -> y::z)) x

let count n =
    List.replicate 5 [0L;1L]
    |> product
    |> Seq.map (fun e ->
                    Seq.zip [3L;5L;17L;257L;65537L] e
                    |> Seq.map (fun e -> pow (fst e) (snd e))
                    |> Seq.reduce (*))
    |> Seq.filter (fun e -> e <> 1L && e <= 1000000000L)
    |> Seq.append [4L]
    |> Seq.map (fun i ->
                    Seq.initInfinite (fun e -> pow 2L e)
                    |> Seq.takeWhile (fun e -> i * e <= n)
                    |> Seq.length)
    |> Seq.sum

stdin.ReadLine () |> int64 |> count |> printfn "%d"
0