結果

問題 No.706 多眼生物の調査
ユーザー taktak
提出日時 2018-07-02 18:41:35
言語 F#
(F# 4.0)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 7,067 ms
コンパイル使用メモリ 191,404 KB
実行使用メモリ 36,480 KB
最終ジャッジ日時 2024-07-01 01:33:38
合計ジャッジ時間 11,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 352 ms
35,300 KB
testcase_01 AC 349 ms
35,180 KB
testcase_02 AC 350 ms
35,136 KB
testcase_03 AC 352 ms
35,012 KB
testcase_04 AC 352 ms
35,300 KB
testcase_05 AC 348 ms
35,688 KB
testcase_06 AC 350 ms
36,480 KB
testcase_07 AC 349 ms
35,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (260 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 #

let R() = stdin.ReadLine()
let N   = R() |> int
let S   = Array.init N (fun _ -> R())

let modeKey = 
    let lis = 
        S 
        |> Array.map (fun x -> x.Length-2)
        |> Array.groupBy (fun x -> x)                 
    let mode = 
        lis 
        |> Array.maxBy (fun (_,len) -> len)
        |> fun (_,len) -> len

    let ret =
        lis
        |> Array.filter (fun (_,len) -> len = mode)
        |> Array.max
        |> fun (k,_) -> k         
    ret        

modeKey |> printfn "%i"
    
0