結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー regeregeregerege
提出日時 2016-03-26 23:33:48
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 7,848 ms
コンパイル使用メモリ 191,312 KB
実行使用メモリ 44,016 KB
最終ジャッジ日時 2024-10-02 01:09:07
合計ジャッジ時間 18,672 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 326 ms
43,392 KB
testcase_02 AC 305 ms
35,460 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 329 ms
43,648 KB
testcase_06 AC 301 ms
35,460 KB
testcase_07 AC 301 ms
35,460 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 316 ms
35,464 KB
testcase_11 WA -
testcase_12 AC 302 ms
35,300 KB
testcase_13 AC 305 ms
35,456 KB
testcase_14 AC 317 ms
40,516 KB
testcase_15 AC 314 ms
38,140 KB
testcase_16 AC 323 ms
41,964 KB
testcase_17 AC 312 ms
37,764 KB
testcase_18 AC 319 ms
41,436 KB
testcase_19 AC 315 ms
40,252 KB
testcase_20 AC 327 ms
44,016 KB
testcase_21 AC 304 ms
35,356 KB
testcase_22 AC 314 ms
39,252 KB
testcase_23 AC 324 ms
42,116 KB
testcase_24 AC 327 ms
42,428 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/

ソースコード

diff #

stdin.ReadLine() |> ignore
stdin.ReadLine().Split(' ')
|> Seq.map int
|> Seq.groupBy int
|> Seq.maxBy (snd >> Seq.length) 
|> fst
|> printfn "%d"
0