結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー regeregeregerege
提出日時 2016-03-26 23:33:48
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 10,183 ms
コンパイル使用メモリ 191,412 KB
実行使用メモリ 45,880 KB
最終ジャッジ日時 2024-04-10 00:11:06
合計ジャッジ時間 16,978 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 376 ms
45,224 KB
testcase_02 AC 349 ms
35,844 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 372 ms
45,880 KB
testcase_06 AC 345 ms
35,580 KB
testcase_07 AC 345 ms
35,452 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 344 ms
35,584 KB
testcase_11 WA -
testcase_12 AC 344 ms
35,708 KB
testcase_13 AC 346 ms
35,460 KB
testcase_14 AC 362 ms
40,644 KB
testcase_15 AC 355 ms
38,152 KB
testcase_16 AC 366 ms
42,092 KB
testcase_17 AC 354 ms
38,288 KB
testcase_18 AC 366 ms
41,832 KB
testcase_19 AC 360 ms
39,952 KB
testcase_20 AC 372 ms
45,536 KB
testcase_21 AC 347 ms
35,912 KB
testcase_22 AC 358 ms
38,844 KB
testcase_23 AC 368 ms
42,368 KB
testcase_24 AC 366 ms
42,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (272 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