結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー regeregeregerege
提出日時 2016-03-26 23:38:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 162 bytes
コンパイル時間 4,046 ms
コンパイル使用メモリ 151,700 KB
実行使用メモリ 34,504 KB
最終ジャッジ日時 2023-09-08 14:49:35
合計ジャッジ時間 8,017 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
23,920 KB
testcase_01 AC 144 ms
33,440 KB
testcase_02 AC 93 ms
23,320 KB
testcase_03 AC 93 ms
23,272 KB
testcase_04 AC 93 ms
25,248 KB
testcase_05 AC 144 ms
33,568 KB
testcase_06 AC 93 ms
25,288 KB
testcase_07 AC 93 ms
23,204 KB
testcase_08 AC 93 ms
23,208 KB
testcase_09 AC 93 ms
23,180 KB
testcase_10 AC 94 ms
23,156 KB
testcase_11 AC 92 ms
23,112 KB
testcase_12 AC 94 ms
21,256 KB
testcase_13 AC 93 ms
23,200 KB
testcase_14 AC 126 ms
27,296 KB
testcase_15 AC 113 ms
25,124 KB
testcase_16 AC 137 ms
28,592 KB
testcase_17 AC 111 ms
24,908 KB
testcase_18 AC 131 ms
28,320 KB
testcase_19 AC 123 ms
26,832 KB
testcase_20 AC 143 ms
34,504 KB
testcase_21 AC 102 ms
23,748 KB
testcase_22 AC 116 ms
27,908 KB
testcase_23 AC 140 ms
30,956 KB
testcase_24 AC 141 ms
31,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

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