結果

問題 No.24 数当てゲーム
ユーザー hum_ophum_op
提出日時 2016-04-16 15:36:12
言語 F#
(F# 4.0)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 747 bytes
コンパイル時間 9,366 ms
コンパイル使用メモリ 185,756 KB
実行使用メモリ 35,988 KB
最終ジャッジ日時 2024-10-04 10:15:56
合計ジャッジ時間 12,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
35,864 KB
testcase_01 AC 293 ms
35,860 KB
testcase_02 AC 294 ms
35,864 KB
testcase_03 AC 300 ms
35,852 KB
testcase_04 AC 293 ms
35,988 KB
testcase_05 AC 297 ms
35,864 KB
testcase_06 AC 295 ms
35,984 KB
testcase_07 AC 298 ms
35,856 KB
testcase_08 AC 300 ms
35,864 KB
testcase_09 AC 308 ms
35,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (226 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 No24 () =
    let N = int <| Console.ReadLine()
    let A = Array.create 10 0
    let yes n =
        if A.[n] <> -1 then
            A.[n] <- A.[n] + 1

        ()

    let rec max i m =
        if i < 10 then
            if A.[i] > m then
                max (i + 1) A.[i]
            else
                max (i + 1) m
        else
            m

    for i in 0..N-1 do
        let IN = Console.ReadLine().Split(' ')
        let L = [ for i in 0..3 -> Int32.Parse IN.[i] ]
        if IN.[4] = "YES" then
            L |> List.iter yes
        else
            L |> List.iter (fun e -> A.[e] <- -1)
    
    let m = max 0 0
    A
    |> Array.findIndex (fun e-> if e = m then true else false)
    |> printfn "%d"

    ()
No24 ()
0