Submission #3245079


Source Code Expand

module Main where

import Control.Applicative
import Control.Monad

main :: IO ()
main = do
    n <- readLn
    [d, x] <- fmap read . words <$> getLine
    as <- replicateM n readLn
    let eat a = (d + a - 1) `div` a
    let ans = (sum $ fmap eat as) + x
    print ans

Submission Info

Submission Time
Task B - Chocolate
User lvs7k
Language Haskell (GHC 7.10.3)
Score 200
Code Size 281 Byte
Status AC
Exec Time 2 ms
Memory 1020 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 12
Set Name Test Cases
Sample sample-01.txt, sample-02.txt, sample-03.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, sample-01.txt, sample-02.txt, sample-03.txt
Case Name Status Exec Time Memory
01.txt AC 2 ms 764 KB
02.txt AC 2 ms 1020 KB
03.txt AC 2 ms 1020 KB
04.txt AC 2 ms 1020 KB
05.txt AC 2 ms 1020 KB
06.txt AC 2 ms 1020 KB
07.txt AC 2 ms 1020 KB
08.txt AC 2 ms 1020 KB
09.txt AC 2 ms 1020 KB
sample-01.txt AC 1 ms 508 KB
sample-02.txt AC 1 ms 508 KB
sample-03.txt AC 1 ms 508 KB