結果
問題 | No.407 鴨等素数間隔列の数え上げ |
ユーザー | kuuso1 |
提出日時 | 2016-08-23 23:18:18 |
言語 | F# (F# 4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 877 bytes |
コンパイル時間 | 13,490 ms |
コンパイル使用メモリ | 210,296 KB |
実行使用メモリ | 190,856 KB |
最終ジャッジ日時 | 2024-11-07 23:41:07 |
合計ジャッジ時間 | 27,892 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 314 ms
34,652 KB |
testcase_01 | AC | 320 ms
34,784 KB |
testcase_02 | AC | 318 ms
34,748 KB |
testcase_03 | AC | 366 ms
59,280 KB |
testcase_04 | AC | 314 ms
34,784 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 602 ms
82,932 KB |
testcase_07 | AC | 325 ms
34,752 KB |
testcase_08 | AC | 322 ms
33,848 KB |
testcase_09 | AC | 324 ms
34,616 KB |
testcase_10 | AC | 321 ms
34,040 KB |
testcase_11 | AC | 324 ms
34,776 KB |
testcase_12 | AC | 324 ms
36,452 KB |
testcase_13 | AC | 320 ms
35,208 KB |
testcase_14 | AC | 322 ms
35,692 KB |
testcase_15 | AC | 317 ms
34,804 KB |
testcase_16 | AC | 316 ms
34,864 KB |
testcase_17 | AC | 315 ms
34,064 KB |
testcase_18 | AC | 318 ms
34,828 KB |
testcase_19 | AC | 364 ms
59,240 KB |
testcase_20 | AC | 492 ms
81,840 KB |
testcase_21 | AC | 380 ms
60,916 KB |
testcase_22 | AC | 373 ms
58,644 KB |
testcase_23 | AC | 420 ms
68,024 KB |
testcase_24 | AC | 495 ms
81,708 KB |
testcase_25 | AC | 591 ms
82,804 KB |
testcase_26 | AC | 592 ms
82,808 KB |
testcase_27 | AC | 395 ms
58,304 KB |
testcase_28 | AC | 427 ms
68,136 KB |
testcase_29 | AC | 581 ms
82,808 KB |
testcase_30 | AC | 366 ms
58,344 KB |
testcase_31 | AC | 543 ms
82,184 KB |
testcase_32 | AC | 574 ms
82,892 KB |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (367 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/
ソースコード
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()