結果
問題 | No.706 多眼生物の調査 |
ユーザー | natoriusan |
提出日時 | 2023-07-30 12:03:18 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 380 ms / 2,000 ms |
コード長 | 309 bytes |
コンパイル時間 | 8,489 ms |
コンパイル使用メモリ | 184,672 KB |
実行使用メモリ | 37,192 KB |
最終ジャッジ日時 | 2024-10-09 07:23:30 |
合計ジャッジ時間 | 12,386 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 341 ms
35,472 KB |
testcase_01 | AC | 343 ms
34,652 KB |
testcase_02 | AC | 346 ms
34,892 KB |
testcase_03 | AC | 348 ms
35,704 KB |
testcase_04 | AC | 353 ms
35,120 KB |
testcase_05 | AC | 354 ms
35,772 KB |
testcase_06 | AC | 380 ms
37,192 KB |
testcase_07 | AC | 348 ms
35,460 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (248 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/
ソースコード
let n = stdin.ReadLine () |> int let s = [| for _ in 0..n-1 -> stdin.ReadLine () |> String.length |> ((+)(-2)) |] let count = [|0..Array.max s|] |> Array.map (fun x -> s |> Array.filter ((=)x) |> Array.length) Array.findIndexBack ((=)(Array.max count)) count |> printfn "%d"