結果

問題 No.182 新規性の虜
ユーザー mazeppa1108mazeppa1108
提出日時 2015-06-24 16:58:43
言語 Haskell
(9.10.1)
結果
AC  
実行時間 425 ms / 5,000 ms
コード長 224 bytes
コンパイル時間 10,863 ms
コンパイル使用メモリ 172,544 KB
実行使用メモリ 37,504 KB
最終ジャッジ日時 2024-12-26 19:25:34
合計ジャッジ時間 15,929 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 277 ms
34,176 KB
testcase_09 AC 425 ms
37,376 KB
testcase_10 AC 367 ms
37,504 KB
testcase_11 AC 306 ms
36,224 KB
testcase_12 AC 110 ms
19,072 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 270 ms
26,112 KB
testcase_19 AC 182 ms
20,352 KB
testcase_20 AC 110 ms
16,640 KB
testcase_21 AC 361 ms
32,128 KB
testcase_22 AC 142 ms
19,712 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 249 ms
35,456 KB
testcase_25 AC 140 ms
20,096 KB
testcase_26 AC 54 ms
13,696 KB
testcase_27 AC 2 ms
5,248 KB
evil01.txt AC 381 ms
52,736 KB
evil02.txt AC 389 ms
52,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.List
import Control.Applicative
import Control.Monad

main = do
     n <- readLn :: IO Int
     a <- map (read :: String -> Int) . words <$> getLine
     print . length . filter ((== 1) . length) . group $ sort a
0