結果

問題 No.182 新規性の虜
ユーザー mazeppa1108mazeppa1108
提出日時 2015-06-24 16:57:11
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 9,149 ms
コンパイル使用メモリ 172,544 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-07-07 17:26:46
合計ジャッジ時間 12,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 178 ms
32,000 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
6,940 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 225 ms
34,560 KB
testcase_25 AC 132 ms
18,048 KB
testcase_26 AC 37 ms
12,800 KB
testcase_27 AC 2 ms
6,944 KB
evil01.txt AC 305 ms
35,328 KB
evil02.txt AC 308 ms
35,328 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 a
0