結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー kuuso1kuuso1
提出日時 2016-08-24 23:15:10
言語 F#
(F# 4.0)
結果
AC  
実行時間 477 ms / 1,000 ms
コード長 875 bytes
コンパイル時間 20,650 ms
コンパイル使用メモリ 210,704 KB
実行使用メモリ 39,480 KB
最終ジャッジ日時 2024-12-15 23:09:23
合計ジャッジ時間 32,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
34,836 KB
testcase_01 AC 322 ms
34,052 KB
testcase_02 AC 323 ms
33,672 KB
testcase_03 AC 351 ms
35,376 KB
testcase_04 AC 328 ms
34,556 KB
testcase_05 AC 461 ms
38,980 KB
testcase_06 AC 391 ms
36,968 KB
testcase_07 AC 312 ms
34,396 KB
testcase_08 AC 319 ms
34,932 KB
testcase_09 AC 315 ms
33,776 KB
testcase_10 AC 326 ms
34,412 KB
testcase_11 AC 341 ms
33,896 KB
testcase_12 AC 331 ms
34,964 KB
testcase_13 AC 317 ms
34,824 KB
testcase_14 AC 328 ms
34,940 KB
testcase_15 AC 314 ms
34,276 KB
testcase_16 AC 310 ms
34,664 KB
testcase_17 AC 322 ms
34,824 KB
testcase_18 AC 309 ms
34,560 KB
testcase_19 AC 338 ms
35,520 KB
testcase_20 AC 399 ms
35,788 KB
testcase_21 AC 336 ms
35,036 KB
testcase_22 AC 370 ms
35,480 KB
testcase_23 AC 343 ms
35,252 KB
testcase_24 AC 356 ms
36,276 KB
testcase_25 AC 397 ms
37,016 KB
testcase_26 AC 387 ms
36,600 KB
testcase_27 AC 321 ms
35,412 KB
testcase_28 AC 344 ms
35,584 KB
testcase_29 AC 402 ms
36,868 KB
testcase_30 AC 347 ms
35,376 KB
testcase_31 AC 376 ms
36,260 KB
testcase_32 AC 392 ms
37,208 KB
testcase_33 AC 470 ms
39,312 KB
testcase_34 AC 477 ms
39,388 KB
testcase_35 AC 451 ms
39,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (537 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
        let ul1 = L/2 |> double |> sqrt |> int |> (+) 1
        let ul2 = L/2 + 99
        for i = 2 to ul1 do
            if isPrime.[i] = true then
                for j in (i*i)..i..ul2 do isPrime.[j] <- false 
        
        let mutable ans:int64 = 0L
        // printfn "%d" ans
        
        for i = 2 to (L/2 + 1) do
            if isPrime.[i] = true && LL >= ((NL-1L) * (int64 i)) then
                ans <- ans + (int64 (( L - ((N-1) * i) + 1 )))
        
        printfn "%d" ans
        
let mySol = new Sol()
mySol.Solve()
0