結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー kuuso1kuuso1
提出日時 2016-08-24 23:15:10
言語 F#
(F# 4.0)
結果
AC  
実行時間 515 ms / 1,000 ms
コード長 875 bytes
コンパイル時間 15,421 ms
コンパイル使用メモリ 199,268 KB
実行使用メモリ 39,408 KB
最終ジャッジ日時 2024-05-09 10:58:21
合計ジャッジ時間 30,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
33,928 KB
testcase_01 AC 345 ms
34,140 KB
testcase_02 AC 340 ms
34,560 KB
testcase_03 AC 364 ms
34,984 KB
testcase_04 AC 343 ms
34,404 KB
testcase_05 AC 502 ms
38,860 KB
testcase_06 AC 428 ms
36,836 KB
testcase_07 AC 339 ms
34,144 KB
testcase_08 AC 346 ms
34,404 KB
testcase_09 AC 343 ms
34,024 KB
testcase_10 AC 347 ms
34,704 KB
testcase_11 AC 347 ms
33,884 KB
testcase_12 AC 349 ms
34,664 KB
testcase_13 AC 343 ms
34,568 KB
testcase_14 AC 350 ms
35,188 KB
testcase_15 AC 342 ms
34,028 KB
testcase_16 AC 350 ms
34,524 KB
testcase_17 AC 345 ms
34,700 KB
testcase_18 AC 343 ms
34,304 KB
testcase_19 AC 360 ms
34,632 KB
testcase_20 AC 396 ms
36,404 KB
testcase_21 AC 363 ms
35,296 KB
testcase_22 AC 362 ms
34,800 KB
testcase_23 AC 374 ms
35,372 KB
testcase_24 AC 389 ms
35,876 KB
testcase_25 AC 428 ms
36,724 KB
testcase_26 AC 423 ms
37,404 KB
testcase_27 AC 355 ms
34,844 KB
testcase_28 AC 377 ms
35,984 KB
testcase_29 AC 423 ms
36,760 KB
testcase_30 AC 363 ms
34,608 KB
testcase_31 AC 406 ms
36,216 KB
testcase_32 AC 423 ms
37,236 KB
testcase_33 AC 511 ms
39,292 KB
testcase_34 AC 515 ms
39,408 KB
testcase_35 AC 507 ms
38,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (407 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