結果

問題 No.723 2つの数の和
ユーザー ducktailducktail
提出日時 2018-08-06 14:18:38
言語 Haskell
(9.8.2)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 750 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 150,912 KB
最終ジャッジ日時 2024-04-27 02:35:45
合計ジャッジ時間 749 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )

Main.hs:6:1: error: [GHC-87110]
    Could not load module ‘Data.IntMap’.
    It is a member of the hidden package ‘containers-0.6.8’.
    Use -v to see a list of the files searched for.
  |
6 | import Data.IntMap (IntMap, (!))
  | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Main.hs:7:1: error: [GHC-87110]
    Could not load module ‘Data.IntMap’.
    It is a member of the hidden package ‘containers-0.6.8’.
    Use -v to see a list of the files searched for.
  |
7 | import qualified Data.IntMap as IM
  | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

ソースコード

diff #

import Control.Applicative ((<$>), (<*>))
import Data.ByteString.Char8 (ByteString)
import qualified Data.ByteString.Char8 as B
import Data.List (unfoldr, foldl')
import Data.Char (isSpace)
import Data.IntMap (IntMap, (!))
import qualified Data.IntMap as IM

main :: IO ()
main = solve <$> f <*> f >>= print
  where f = readil B.readInt <$> B.getLine

solve :: [Int] -> [Int] -> Int
solve [n, x] as = IM.foldlWithKey' (\ct k v -> if IM.member (x-k) db then ct + v * db ! (x-k) else ct) 0 db
  where db = foldl' (\m a -> IM.insertWith (+) a 1 m) IM.empty as

readil :: Integral a =>  (ByteString -> Maybe (a, ByteString)) -> ByteString -> [a]
readil f = unfoldr g
  where g s = do
          (n, s') <- f s
          return (n, B.dropWhile isSpace s')
0