結果

問題 No.182 新規性の虜
ユーザー mazeppa1108mazeppa1108
提出日時 2015-06-24 16:58:43
言語 Haskell
(9.8.2)
結果
AC  
実行時間 394 ms / 5,000 ms
コード長 224 bytes
コンパイル時間 6,644 ms
コンパイル使用メモリ 169,216 KB
実行使用メモリ 37,632 KB
最終ジャッジ日時 2024-06-08 03:08:33
合計ジャッジ時間 8,955 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 256 ms
34,560 KB
testcase_09 AC 394 ms
37,632 KB
testcase_10 AC 341 ms
37,632 KB
testcase_11 AC 279 ms
36,480 KB
testcase_12 AC 110 ms
19,072 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 277 ms
26,240 KB
testcase_19 AC 169 ms
20,352 KB
testcase_20 AC 104 ms
17,024 KB
testcase_21 AC 313 ms
32,384 KB
testcase_22 AC 135 ms
19,968 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 228 ms
35,456 KB
testcase_25 AC 134 ms
19,968 KB
testcase_26 AC 52 ms
13,824 KB
testcase_27 AC 2 ms
6,944 KB
evil01.txt AC 359 ms
52,864 KB
evil02.txt AC 358 ms
52,864 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