Task: | Grid Paths |
Sender: | Omochiikaeri~! |
Submission time: | 2019-05-25 13:06:42 +0300 |
Language: | Haskell |
Status: | READY |
Result: | ACCEPTED |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.13 s | details |
Compiler report
input/code.hs:1:1: warning: [-Wmissing-signatures] Top-level binding with no type signature: main :: IO () input/code.hs:11:1: warning: [-Wmissing-signatures] Top-level binding with no type signature: modulo :: Integer input/code.hs:13:1: warning: [-Wmissing-signatures] Top-level binding with no type signature: next :: [Integer] -> (Int, [Integer]) -> [Integer] input/code.hs:16:1: warning: [-Wmissing-signatures] Top-level binding with no type signature: pt :: [[Integer]] input/code.hs:16:14: warning: [-Wtype-defaults] * Defaulting the following constraints to type `Integer' (Num a0) arising from a use of `pt_calc' at input/code.hs:16:14-20 (Num a0) arising from a use of `+' at input/code.hs:14:18-20 (Num a0) arising from the literal `1000000007' at input/code.hs:11:10-19 (Show a0) arising from a use of `show' at input/code.hs:9:16-36 (Integral a0) arising from a use of `mod' at input/code.hs:9:23-36...
Code
main = don_ <- getLinelet n = read n_grid_ <- sequence $ take n $ repeat getLinelet grid = map (map read . words) grid_let res = foldl next (tail $ scanl (+) 0 $ head grid) (zip [1..] $ tail grid) !! (n-1)putStrLn $ show $ mod res modulomodulo = 1000000007next prev (row, l) =tail $ scanl (+) 0 $ zipWith (+) prev (zipWith (*) (muls row) l)pt = iterate pt_calc [1]pt_calc prev =1 : zipWith (+) prev (tail prev) ++ [1]muls row =map (\x -> (pt !! (row+x)) !! row) [0..]