Submission #1041483


Source Code Expand

module Main where

import Control.Applicative
import Data.List

inf = 10 ^ 9 :: Int

solve :: Int -> Int -> Int
solve x y = minimum [ if y >= x then y - x else inf
                    , if (-x - y) >= 0 then (-x - y) + 1 else inf
                    , if y + x >= 0 then y + x + 1 else inf
                    , if x - y >= 0 then x - y + 2 else inf
                    ]

main :: IO ()
main = do
  [x, y] <- map read . words <$> getLine
  print $ solve x y

Submission Info

Submission Time
Task A - Simple Calculator
User ygorshenin
Language Haskell (GHC 7.10.3)
Score 0
Code Size 476 Byte
Status WA
Exec Time 3 ms
Memory 508 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 3
AC × 13
WA × 1
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt
Case Name Status Exec Time Memory
0_00.txt AC 3 ms 508 KB
0_01.txt AC 3 ms 508 KB
0_02.txt AC 3 ms 508 KB
1_00.txt AC 3 ms 508 KB
1_01.txt AC 3 ms 508 KB
1_02.txt AC 3 ms 508 KB
1_03.txt AC 3 ms 508 KB
1_04.txt AC 3 ms 508 KB
1_05.txt WA 3 ms 508 KB
1_06.txt AC 3 ms 508 KB
1_07.txt AC 3 ms 508 KB
1_08.txt AC 3 ms 508 KB
1_09.txt AC 3 ms 508 KB
1_10.txt AC 3 ms 508 KB