結果
問題 | No.407 鴨等素数間隔列の数え上げ |
ユーザー | kuuso1 |
提出日時 | 2016-08-23 23:15:15 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 897 bytes |
コンパイル時間 | 6,746 ms |
コンパイル使用メモリ | 210,928 KB |
実行使用メモリ | 39,924 KB |
最終ジャッジ日時 | 2024-11-07 23:37:36 |
合計ジャッジ時間 | 20,553 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 335 ms
34,628 KB |
testcase_01 | AC | 333 ms
33,864 KB |
testcase_02 | AC | 330 ms
33,732 KB |
testcase_03 | WA | - |
testcase_04 | AC | 331 ms
33,836 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 332 ms
33,864 KB |
testcase_09 | WA | - |
testcase_10 | AC | 331 ms
33,944 KB |
testcase_11 | AC | 331 ms
33,860 KB |
testcase_12 | AC | 330 ms
34,684 KB |
testcase_13 | AC | 329 ms
34,076 KB |
testcase_14 | WA | - |
testcase_15 | AC | 332 ms
33,992 KB |
testcase_16 | WA | - |
testcase_17 | AC | 328 ms
33,948 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 333 ms
35,300 KB |
testcase_22 | AC | 350 ms
34,688 KB |
testcase_23 | WA | - |
testcase_24 | AC | 334 ms
35,616 KB |
testcase_25 | WA | - |
testcase_26 | AC | 343 ms
36,600 KB |
testcase_27 | AC | 333 ms
34,372 KB |
testcase_28 | AC | 341 ms
35,300 KB |
testcase_29 | WA | - |
testcase_30 | AC | 333 ms
34,544 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (225 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 for i = 2 to ul1 do if isPrime.[i] = true then //for j in [(i*i)..i..(L/2 + 99)] do isPrime.[j] <- false for j = 1 to (L/2 + 99)/(i*i) do isPrime.[j*i*i] <- false let mutable ans:int64 = 0L 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()