結果

問題 No.182 新規性の虜
ユーザー okadukiokaduki
提出日時 2015-04-16 23:34:49
言語 Haskell
(9.8.2)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 604 bytes
コンパイル時間 6,731 ms
コンパイル使用メモリ 180,304 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-06-08 02:53:00
合計ジャッジ時間 7,630 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 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 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 79 ms
15,872 KB
testcase_09 AC 152 ms
18,816 KB
testcase_10 AC 120 ms
16,768 KB
testcase_11 AC 95 ms
15,872 KB
testcase_12 AC 32 ms
10,880 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 117 ms
17,920 KB
testcase_19 AC 73 ms
13,952 KB
testcase_20 AC 40 ms
11,392 KB
testcase_21 AC 144 ms
20,992 KB
testcase_22 AC 53 ms
13,312 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 28 ms
17,024 KB
testcase_25 AC 19 ms
12,544 KB
testcase_26 AC 13 ms
8,576 KB
testcase_27 AC 1 ms
5,376 KB
evil01.txt AC 30 ms
17,792 KB
evil02.txt AC 28 ms
17,920 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 Control.Applicative
import Control.Monad
import qualified Data.ByteString.Char8 as B
import Data.Maybe (fromJust)
import Data.List
import Text.Printf
import Debug.Trace

-- or readInteger
readInts :: B.ByteString -> [Int]
readInts = map (fst . fromJust . B.readInt) . B.words

getInts :: IO [Int]
getInts = liftM readInts B.getLine

main = do
  [n] <- getInts
  xs <- getInts
  print $ solve $ Data.List.sort xs
  where
    solve xs = sub xs 0 2
    sub [] _ c = to c
    sub (x:xs) a c = if x == a then sub xs a (c+1)
                     else to c + sub xs x 1
    to c = if c > 1 then 0 else 1
0