Submission #402529


Source Code Expand

import Data.List.Split (splitOn)

main = do
	line <- getLine
	let ints = map (\x -> read x :: Int) $ splitOn " " line
	print $ (ints !! 0) - (ints !! 1)

Submission Info

Submission Time
Task A - 積雪深差
User nilesrumfoord
Language Haskell (GHC 7.4.1)
Score 0
Code Size 157 Byte
Status CE

Compile Error

Main.hs:1:8:
    Could not find module `Data.List.Split'
    Use -v to see a list of the files searched for.