結果

問題 No.713 素数の和
ユーザー taktak
提出日時 2018-08-13 00:57:22
言語 F#
(F# 4.0)
結果
AC  
実行時間 1,526 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 6,579 ms
コンパイル使用メモリ 189,936 KB
実行使用メモリ 53,504 KB
最終ジャッジ日時 2024-09-24 07:39:12
合計ジャッジ時間 13,674 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,520 ms
53,504 KB
testcase_01 AC 57 ms
29,560 KB
testcase_02 AC 62 ms
29,660 KB
testcase_03 AC 390 ms
45,184 KB
testcase_04 AC 1,526 ms
53,376 KB
testcase_05 AC 114 ms
34,020 KB
testcase_06 AC 62 ms
29,824 KB
testcase_07 AC 64 ms
29,952 KB
testcase_08 AC 126 ms
34,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (222 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 primLazy = 
    let odds = Seq.initInfinite (fun i -> 2 * i + 1)
    let rec f src =
        let (x, xs) = (Seq.head src, Seq.skip 1 src)
        seq {   
            yield x 
            for i in f xs do 
                if i % x <> 0 then yield i 
        }
    seq {   
        yield 2
        yield! f (Seq.skip 1 odds) 
    }

let N = stdin.ReadLine() |> int

primLazy
|> Seq.takeWhile(fun x -> x <= N)
|> Seq.sum
|> stdout.WriteLine
0