結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー Nobita GomuNobita Gomu
提出日時 2017-09-28 01:24:21
言語 F#
(F# 4.0)
結果
AC  
実行時間 363 ms / 5,000 ms
コード長 631 bytes
コンパイル時間 13,582 ms
コンパイル使用メモリ 199,976 KB
実行使用メモリ 37,224 KB
最終ジャッジ日時 2024-06-26 08:19:36
合計ジャッジ時間 21,563 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 352 ms
35,768 KB
testcase_01 AC 356 ms
37,004 KB
testcase_02 AC 353 ms
35,280 KB
testcase_03 AC 350 ms
35,284 KB
testcase_04 AC 350 ms
35,320 KB
testcase_05 AC 360 ms
37,048 KB
testcase_06 AC 353 ms
35,156 KB
testcase_07 AC 353 ms
35,408 KB
testcase_08 AC 349 ms
35,416 KB
testcase_09 AC 349 ms
35,276 KB
testcase_10 AC 350 ms
35,416 KB
testcase_11 AC 352 ms
35,288 KB
testcase_12 AC 352 ms
35,572 KB
testcase_13 AC 353 ms
35,284 KB
testcase_14 AC 356 ms
36,564 KB
testcase_15 AC 360 ms
36,308 KB
testcase_16 AC 358 ms
36,968 KB
testcase_17 AC 356 ms
35,884 KB
testcase_18 AC 357 ms
37,012 KB
testcase_19 AC 356 ms
36,220 KB
testcase_20 AC 359 ms
36,760 KB
testcase_21 AC 353 ms
35,608 KB
testcase_22 AC 359 ms
35,988 KB
testcase_23 AC 361 ms
37,224 KB
testcase_24 AC 363 ms
37,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (297 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 #

type Buf = { a:int[]; offset:int } with
    member private this.update (c:char) =
        let idx = (int c) - this.offset
        this.a.[idx] <- this.a.[idx] + 1

    member this.reader (s:string) =
        s
        |> Seq.filter (fun c -> c <> ' ')
        |> Seq.iter (fun c -> this.update c)

    member this.maxvalue =
        this.a
        |> Seq.mapi (fun i v -> (i+1, v))
        |> Seq.sortBy (fun (i, v) -> v)
        |> Seq.last
        |> fun (i, v) -> i

let buf = { a = [| for _ in 1..6 -> 0 |]; offset = int '1' }

stdin.ReadLine () |> ignore
stdin.ReadLine () |> buf.reader |> ignore

buf.maxvalue |> printfn "%d"
0