結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー aimyaimy
提出日時 2017-04-28 19:33:57
言語 Haskell
(9.8.2)
結果
AC  
実行時間 192 ms / 5,000 ms
コード長 133 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 154,008 KB
実行使用メモリ 28,232 KB
最終ジャッジ日時 2023-09-08 15:09:08
合計ジャッジ時間 3,472 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
10,804 KB
testcase_01 AC 182 ms
27,196 KB
testcase_02 AC 2 ms
6,536 KB
testcase_03 AC 3 ms
6,620 KB
testcase_04 AC 2 ms
6,576 KB
testcase_05 AC 62 ms
26,252 KB
testcase_06 AC 3 ms
6,628 KB
testcase_07 AC 2 ms
6,736 KB
testcase_08 AC 2 ms
6,532 KB
testcase_09 AC 2 ms
6,576 KB
testcase_10 AC 3 ms
6,676 KB
testcase_11 AC 2 ms
6,616 KB
testcase_12 AC 3 ms
6,628 KB
testcase_13 AC 2 ms
6,636 KB
testcase_14 AC 102 ms
20,116 KB
testcase_15 AC 42 ms
14,572 KB
testcase_16 AC 133 ms
24,064 KB
testcase_17 AC 33 ms
13,856 KB
testcase_18 AC 132 ms
23,172 KB
testcase_19 AC 92 ms
19,100 KB
testcase_20 AC 192 ms
28,232 KB
testcase_21 AC 6 ms
9,348 KB
testcase_22 AC 52 ms
16,212 KB
testcase_23 AC 182 ms
26,304 KB
testcase_24 AC 172 ms
27,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.List
import Data.Ord

main = getLine >> getLine >>= putStrLn . head . maximumBy (comparing length) . group . sort . words
0