結果

問題 No.237 作図可能性
ユーザー Nobita GomuNobita Gomu
提出日時 2017-10-05 00:31:50
言語 F#
(F# 4.0)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 13,764 ms
コンパイル使用メモリ 198,188 KB
実行使用メモリ 35,792 KB
最終ジャッジ日時 2024-11-16 18:55:24
合計ジャッジ時間 25,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 358 ms
35,740 KB
testcase_01 AC 357 ms
35,480 KB
testcase_02 AC 361 ms
35,232 KB
testcase_03 AC 357 ms
35,372 KB
testcase_04 AC 359 ms
35,128 KB
testcase_05 AC 360 ms
35,392 KB
testcase_06 AC 358 ms
35,664 KB
testcase_07 AC 358 ms
35,536 KB
testcase_08 AC 362 ms
35,692 KB
testcase_09 AC 360 ms
35,128 KB
testcase_10 AC 360 ms
35,568 KB
testcase_11 AC 353 ms
35,468 KB
testcase_12 AC 362 ms
35,356 KB
testcase_13 AC 363 ms
35,504 KB
testcase_14 AC 354 ms
35,388 KB
testcase_15 AC 359 ms
35,516 KB
testcase_16 AC 355 ms
35,532 KB
testcase_17 AC 359 ms
35,532 KB
testcase_18 AC 356 ms
34,620 KB
testcase_19 AC 358 ms
34,984 KB
testcase_20 AC 358 ms
35,444 KB
testcase_21 AC 360 ms
35,424 KB
testcase_22 AC 359 ms
35,440 KB
testcase_23 AC 356 ms
35,440 KB
testcase_24 AC 357 ms
35,444 KB
testcase_25 AC 360 ms
35,564 KB
testcase_26 AC 350 ms
35,692 KB
testcase_27 AC 351 ms
35,792 KB
testcase_28 AC 346 ms
35,740 KB
testcase_29 AC 356 ms
35,444 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (650 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