結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー regeregeregerege
提出日時 2016-03-26 23:38:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 376 ms / 5,000 ms
コード長 162 bytes
コンパイル時間 12,960 ms
コンパイル使用メモリ 190,824 KB
実行使用メモリ 43,904 KB
最終ジャッジ日時 2024-06-26 07:54:45
合計ジャッジ時間 23,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 354 ms
35,920 KB
testcase_01 AC 370 ms
43,380 KB
testcase_02 AC 348 ms
35,576 KB
testcase_03 AC 348 ms
34,644 KB
testcase_04 AC 346 ms
35,964 KB
testcase_05 AC 373 ms
43,776 KB
testcase_06 AC 350 ms
35,460 KB
testcase_07 AC 347 ms
35,200 KB
testcase_08 AC 345 ms
34,916 KB
testcase_09 AC 347 ms
35,460 KB
testcase_10 AC 346 ms
35,456 KB
testcase_11 AC 344 ms
35,708 KB
testcase_12 AC 349 ms
35,712 KB
testcase_13 AC 349 ms
35,584 KB
testcase_14 AC 365 ms
40,632 KB
testcase_15 AC 359 ms
38,412 KB
testcase_16 AC 367 ms
41,524 KB
testcase_17 AC 356 ms
38,168 KB
testcase_18 AC 368 ms
41,832 KB
testcase_19 AC 363 ms
40,628 KB
testcase_20 AC 376 ms
43,904 KB
testcase_21 AC 350 ms
35,780 KB
testcase_22 AC 357 ms
39,132 KB
testcase_23 AC 369 ms
42,416 KB
testcase_24 AC 371 ms
42,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (294 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 (fun (n,s) -> Seq.length s * 10 + n)
|> fst
|> printfn "%d"
0