結果

問題 No.6 使いものにならないハッシュ
ユーザー pocaristpocarist
提出日時 2015-09-02 14:48:25
言語 F#
(F# 4.0)
結果
AC  
実行時間 390 ms / 5,000 ms
コード長 1,383 bytes
コンパイル時間 11,608 ms
コンパイル使用メモリ 186,328 KB
実行使用メモリ 42,920 KB
最終ジャッジ日時 2024-09-16 16:30:08
合計ジャッジ時間 23,603 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
34,872 KB
testcase_01 AC 347 ms
34,524 KB
testcase_02 AC 390 ms
42,916 KB
testcase_03 AC 355 ms
36,104 KB
testcase_04 AC 362 ms
36,976 KB
testcase_05 AC 363 ms
37,788 KB
testcase_06 AC 374 ms
39,384 KB
testcase_07 AC 368 ms
37,164 KB
testcase_08 AC 369 ms
38,532 KB
testcase_09 AC 371 ms
35,936 KB
testcase_10 AC 345 ms
34,880 KB
testcase_11 AC 360 ms
36,972 KB
testcase_12 AC 380 ms
40,108 KB
testcase_13 AC 367 ms
35,500 KB
testcase_14 AC 368 ms
35,944 KB
testcase_15 AC 370 ms
39,460 KB
testcase_16 AC 371 ms
37,480 KB
testcase_17 AC 382 ms
40,116 KB
testcase_18 AC 388 ms
42,920 KB
testcase_19 AC 383 ms
40,044 KB
testcase_20 AC 378 ms
39,368 KB
testcase_21 AC 353 ms
36,336 KB
testcase_22 AC 380 ms
40,376 KB
testcase_23 AC 378 ms
40,024 KB
testcase_24 AC 380 ms
39,412 KB
testcase_25 AC 367 ms
37,344 KB
testcase_26 AC 387 ms
40,872 KB
testcase_27 AC 378 ms
39,528 KB
testcase_28 AC 366 ms
38,264 KB
testcase_29 AC 384 ms
41,096 KB
testcase_30 AC 380 ms
40,692 KB
testcase_31 AC 379 ms
40,360 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (447 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

let dprintfn fmt = Printf.kprintf Diagnostics.Debug.WriteLine fmt

let primes n =
    let mid = float n |> sqrt |> floor |> int
    let table = Array.init (n+1) (fun _ -> true)
    seq {
        for i in 2 .. mid do
            if table.[i] then
                yield i
                for j in (i+i) .. i .. n do
                    table.[j] <- false
        for i in (mid+1) .. n do
            if table.[i] then
                yield i
    }

let sum_digit n =
    let rec f acc i =
        let m = i % 10
        let d = i / 10
        let acc' = acc+m
        if d = 0 then
            if acc' < 10 then acc'
            else f 0 acc'
        else
            f acc' d
    f 0 n

[<EntryPoint>]
let main argv = 
    let K = Console.ReadLine() |> int
    let N = Console.ReadLine() |> int

    primes N
    |> Seq.filter (fun x -> x >= K)
    |> Seq.toArray
    |> fun ps ->
        let hash = Array.map sum_digit ps
        let rec loop ans maxcnt j =
            if j = hash.Length then ans else
            let rec f s i =
                if i = hash.Length || Set.exists ((=) hash.[i]) s then s.Count
                else f (Set.add hash.[i] s) (i+1)
            let cnt = f Set.empty j
            if cnt >= maxcnt then
                loop ps.[j] cnt (j+1)
            else 
                loop ans maxcnt (j+1)
        loop 0 0 0

    |> printfn "%d"
    0
0