結果

問題 No.182 新規性の虜
ユーザー momen999momen999
提出日時 2017-06-09 21:00:22
言語 Haskell
(9.8.2)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 3,531 ms
コンパイル使用メモリ 180,172 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-06-08 11:08:06
合計ジャッジ時間 5,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 87 ms
15,616 KB
testcase_09 AC 157 ms
18,816 KB
testcase_10 AC 137 ms
17,792 KB
testcase_11 AC 106 ms
14,976 KB
testcase_12 AC 34 ms
10,752 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 130 ms
17,664 KB
testcase_19 AC 91 ms
14,720 KB
testcase_20 AC 45 ms
11,264 KB
testcase_21 AC 171 ms
19,712 KB
testcase_22 AC 63 ms
12,800 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 36 ms
17,792 KB
testcase_25 AC 32 ms
14,720 KB
testcase_26 AC 15 ms
8,704 KB
testcase_27 AC 1 ms
5,376 KB
evil01.txt AC 37 ms
17,920 KB
evil02.txt AC 39 ms
17,664 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