結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー momen999momen999
提出日時 2017-04-24 10:58:44
言語 Haskell
(9.8.2)
結果
AC  
実行時間 223 ms / 5,000 ms
コード長 430 bytes
コンパイル時間 1,442 ms
コンパイル使用メモリ 163,012 KB
実行使用メモリ 24,448 KB
最終ジャッジ日時 2023-09-08 15:08:45
合計ジャッジ時間 4,764 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
11,668 KB
testcase_01 AC 223 ms
24,448 KB
testcase_02 AC 3 ms
7,168 KB
testcase_03 AC 2 ms
7,240 KB
testcase_04 AC 2 ms
7,256 KB
testcase_05 AC 123 ms
20,984 KB
testcase_06 AC 3 ms
6,964 KB
testcase_07 AC 2 ms
7,064 KB
testcase_08 AC 3 ms
7,288 KB
testcase_09 AC 3 ms
7,212 KB
testcase_10 AC 2 ms
7,156 KB
testcase_11 AC 3 ms
7,172 KB
testcase_12 AC 2 ms
7,124 KB
testcase_13 AC 3 ms
7,144 KB
testcase_14 AC 122 ms
18,832 KB
testcase_15 AC 52 ms
15,484 KB
testcase_16 AC 163 ms
21,880 KB
testcase_17 AC 52 ms
14,820 KB
testcase_18 AC 162 ms
21,192 KB
testcase_19 AC 112 ms
18,640 KB
testcase_20 AC 223 ms
23,860 KB
testcase_21 AC 12 ms
11,416 KB
testcase_22 AC 72 ms
15,656 KB
testcase_23 AC 202 ms
23,960 KB
testcase_24 AC 213 ms
24,020 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 Control.Monad
import Data.List

rInt :: String -> Int
rInt = read

func079 [] = []
func079 xs = (x, c) : func079 xs'
    where
        x = head xs
        c = length $ filter (== x) xs
        xs' = drop c xs

sortSnd x y
    | snd x > snd y = LT
    | otherwise     = GT

main = do
    n <- getLine
    ls <- sort . map rInt . words <$> getLine
    let
        ls' = sortBy sortSnd $ func079 ls
    print $ fst $ head ls'
0