結果

問題 No.182 新規性の虜
ユーザー momen999momen999
提出日時 2017-06-09 21:00:22
言語 Haskell
(9.10.1)
結果
AC  
実行時間 212 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 11,060 ms
コンパイル使用メモリ 180,168 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-12-27 15:48:31
合計ジャッジ時間 13,690 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 99 ms
15,488 KB
testcase_09 AC 198 ms
18,688 KB
testcase_10 AC 162 ms
17,536 KB
testcase_11 AC 126 ms
15,488 KB
testcase_12 AC 43 ms
10,368 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 3 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 168 ms
17,536 KB
testcase_19 AC 111 ms
14,464 KB
testcase_20 AC 55 ms
11,136 KB
testcase_21 AC 212 ms
19,712 KB
testcase_22 AC 75 ms
12,672 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 43 ms
17,664 KB
testcase_25 AC 38 ms
14,592 KB
testcase_26 AC 16 ms
8,576 KB
testcase_27 AC 2 ms
5,248 KB
evil01.txt AC 43 ms
17,792 KB
evil02.txt AC 43 ms
17,792 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 qualified Data.ByteString.Char8 as B
import Data.List
import Data.Maybe

rInt :: B.ByteString -> Int
rInt = fst . fromJust . B.readInt

main = do
    getLine
    as <- map rInt . B.words <$> B.getLine
    print $ length $ filter (==1) $ map length $ group $ sort as
0