結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー kuuso1kuuso1
提出日時 2016-08-22 23:45:32
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 738 bytes
コンパイル時間 15,611 ms
コンパイル使用メモリ 209,284 KB
実行使用メモリ 203,824 KB
最終ジャッジ日時 2024-11-07 22:48:26
合計ジャッジ時間 20,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
37,404 KB
testcase_01 AC 346 ms
34,884 KB
testcase_02 AC 343 ms
34,564 KB
testcase_03 TLE -
testcase_04 AC 341 ms
34,688 KB
testcase_05 TLE -
testcase_06 AC 504 ms
88,752 KB
testcase_07 AC 340 ms
35,144 KB
testcase_08 AC 338 ms
34,556 KB
testcase_09 AC 340 ms
35,016 KB
testcase_10 AC 340 ms
35,008 KB
testcase_11 AC 336 ms
34,956 KB
testcase_12 AC 340 ms
34,476 KB
testcase_13 AC 341 ms
35,296 KB
testcase_14 AC 346 ms
36,712 KB
testcase_15 AC 342 ms
34,696 KB
testcase_16 AC 342 ms
35,212 KB
testcase_17 AC 343 ms
34,888 KB
testcase_18 AC 338 ms
35,056 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 345 ms
35,888 KB
testcase_22 AC 351 ms
37,076 KB
testcase_23 AC 446 ms
67,940 KB
testcase_24 AC 431 ms
76,428 KB
testcase_25 RE -
testcase_26 AC 506 ms
83,016 KB
testcase_27 AC 339 ms
34,788 KB
testcase_28 AC 408 ms
63,876 KB
testcase_29 AC 577 ms
82,796 KB
testcase_30 AC 344 ms
34,980 KB
testcase_31 AC 548 ms
82,520 KB
testcase_32 RE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (402 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(4,13): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System
type Sol() =
    member this.Solve() = 
        let [|N;L|] = stdin.ReadLine().Split() |> Array.map int
        
        let NL = int64 N
        let LL = int64 L
        
        let isPrime = Array.create (L/2 + 100) true
        let mutable primes:int list = []
        isPrime.[0] <- false
        isPrime.[1] <- false
        for i = 2 to (L/2) do
            if isPrime.[i] = true && LL >= ((NL-1L) * (int64 i)) then
                primes <- i :: primes
                for j in [(i*i)..i..(L/2 + 99)] do isPrime.[j] <- false 
        
        let ans:int64 = primes |> List.sumBy (fun p -> (( L - ((N-1) * p) + 1 ) |> int64 ) )
        
        printfn "%d" ans
        
        ()
let mySol = new Sol()
mySol.Solve()
0