結果

問題 No.662 スロットマシーン
ユーザー taktak
提出日時 2018-03-16 13:58:54
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 1,233 bytes
コンパイル時間 12,982 ms
コンパイル使用メモリ 185,684 KB
実行使用メモリ 36,684 KB
最終ジャッジ日時 2024-06-01 09:24:01
合計ジャッジ時間 15,899 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
35,824 KB
testcase_01 AC 345 ms
34,880 KB
testcase_02 AC 347 ms
34,504 KB
testcase_03 AC 346 ms
34,684 KB
testcase_04 AC 345 ms
35,064 KB
testcase_05 AC 348 ms
34,580 KB
testcase_06 WA -
testcase_07 AC 350 ms
34,592 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 348 ms
34,556 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (410 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
open System.Collections.Generic

let read() = Console.ReadLine()
let readInt() = read() |> int

let make() =
    let num = readInt()
    let arr = Array.init num (fun _ -> read())
    num,arr

let cnt keys arr =
    let t = new Dictionary<string,int>()
    for k in keys do 
        t.[k] <- 0
    for v in arr do 
        t.[v] <- t.[v] + 1
    t

let scores = 
    let t = new Dictionary<string,int>()
    for i in 1..5 do 
        let tt = Console.ReadLine().Split()
        t.[tt.[0]] <- tt.[1] |> int
    t

[<EntryPoint>]
let main _ =
    let n1,A = make()
    let n2,B = make()
    let n3,C = make()
    let cnt0 = cnt scores.Keys
    let cntA = cnt0 A
    let cntB = cnt0 B
    let cntC = cnt0 C

    let occurrences = 
        let t = new  Dictionary<string,int>()
        for k in scores.Keys do 
            t.[k] <- 0
        t

    let mutable sum = 0
    for k in scores.Keys do
        let occur = cntA.[k] * cntB.[k] * cntC.[k] * 5
        if occur <> 0 then
            sum <- sum + occur * scores.[k]
            occurrences.[k] <- occurrences.[k] + occur

    float sum / float (n1 * n2 * n3)
    |> printfn "%f"

    scores.Keys
    |> seq
    |> Seq.iter(fun k -> printfn "%i" occurrences.[k])

    0
0