結果

問題 No.265 数学のテスト
ユーザー ともきともき
提出日時 2015-08-08 01:04:30
言語 Haskell
(9.8.2)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 2,188 bytes
コンパイル時間 10,119 ms
コンパイル使用メモリ 163,164 KB
実行使用メモリ 14,612 KB
最終ジャッジ日時 2023-08-16 02:03:47
合計ジャッジ時間 7,776 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
11,716 KB
testcase_01 AC 12 ms
13,568 KB
testcase_02 AC 22 ms
14,612 KB
testcase_03 AC 22 ms
12,988 KB
testcase_04 AC 22 ms
12,928 KB
testcase_05 AC 22 ms
13,300 KB
testcase_06 AC 22 ms
12,936 KB
testcase_07 AC 22 ms
12,928 KB
testcase_08 AC 32 ms
14,120 KB
testcase_09 AC 22 ms
12,996 KB
testcase_10 AC 22 ms
12,932 KB
testcase_11 AC 22 ms
13,328 KB
testcase_12 AC 3 ms
7,268 KB
testcase_13 AC 12 ms
11,932 KB
testcase_14 AC 8 ms
11,200 KB
testcase_15 AC 3 ms
7,040 KB
testcase_16 AC 5 ms
10,588 KB
testcase_17 AC 2 ms
6,984 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 3 ms
7,136 KB
testcase_20 AC 3 ms
7,676 KB
testcase_21 AC 2 ms
6,928 KB
testcase_22 AC 7 ms
11,312 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
7,036 KB
testcase_25 AC 11 ms
11,916 KB
testcase_26 AC 2 ms
6,964 KB
testcase_27 AC 2 ms
6,980 KB
testcase_28 AC 4 ms
8,532 KB
testcase_29 AC 2 ms
7,060 KB
testcase_30 AC 4 ms
9,108 KB
testcase_31 AC 2 ms
6,988 KB
testcase_32 AC 2 ms
6,912 KB
testcase_33 AC 2 ms
6,924 KB
testcase_34 AC 2 ms
7,044 KB
testcase_35 AC 2 ms
7,028 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

{-# OPTIONS_GHC -O2 -funbox-strict-fields #-}

import Control.Applicative
import qualified Data.List as L

data Exp = Con   Int
         | Var   String
         | Mult  Exp Exp
         | Plus  Exp Exp
         | Bibun Exp
  deriving (Show)


parse :: String -> Exp
parse s = case expression s of
  (a, "") -> a
  (a, s ) -> error ("remain: " ++ s)

expression :: String -> (Exp, String)
expression s = case r of
  '+' : t -> (Plus h k, a) where (k,a) = expression t
  _        -> (h, r)
  where
    (h,r) = term s


term :: String -> (Exp, String)
term s = case r of
           '*' : t -> (Mult h k, a) where (k,a) = (term t)
           _       -> (h, r)
         where
           (h,r) = factor s

factor :: String -> (Exp, String)
factor ('d' : r) = (Bibun h, a)
  where
    (h,k) = expression (tail r)  -- remove '{'
    a     = tail k               -- remove '}'
factor ('x' : r) = (Var "x", r)
factor s = (Con x, r)
  where [(x,r)] = reads s


-- list size is constant.
-- eval :: Exp -> [Int]
-- eval (Con a)          = a : [0,0 ..]
-- eval (Var _)          = 0 : 1 : [0,0..]
-- eval (Mult x (Var _)) = 0 : (eval x)
-- eval (Mult x (Con a)) = map (* a) $ eval x
-- eval (Mult (Var _) x) = 0 : (eval x)
-- eval (Mult (Con a) x) = map (* a) $ eval x
-- eval (Mult _ _) = error "mult"

-- eval (Plus l r) = zipWith (+) (eval l) (eval r)
-- eval (Bibun r)  = zipWith (*) (tail $ eval r) [1..]

eval :: Int -> Exp -> [Int]
eval m (Con a)          = take m (a : [0,0 ..])
eval m (Var _)          = take m (0 : 1 : [0,0..])

eval m (Mult x (Var _)) = 0 : (init (eval m x))
eval m (Mult (Var _) x) = 0 : (init (eval m x))
eval m (Mult x (Con a)) = map (* a) $ eval m x
eval m (Mult (Con a) x) = map (* a) $ eval m x
eval m (Mult _ _) = error "mult"

eval m (Plus l r) = zipWith (+) (eval m l) (eval m r)
eval m (Bibun r)  = zipWith (*) ((tail $ eval m r) ++ [0]) [1..]

solve :: Int -> String -> [Int]
-- solve max_degree = (take (max_degree+1)) . eval . parse
solve max_degree = (eval (max_degree+1)) . parse

main :: IO ()
main = do
  n <- read <$> getLine :: IO Int
  d <- read <$> getLine :: IO Int
  s <- getLine
  putStrLn $ foldl (++) ""  (L.intersperse " " (map show (solve d s)))
0