CSES - Datatähti 2022 alku - Results
Submission details
Task:Karkit
Sender:ZakkeX
Submission time:2021-10-04 09:00:28 +0300
Language:Haskell
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED100
Test results
testverdicttime
#1ACCEPTED0.01 sdetails
#2ACCEPTED0.01 sdetails
#3ACCEPTED0.01 sdetails
#4ACCEPTED0.01 sdetails
#5ACCEPTED0.01 sdetails

Compiler report

input/code.hs:1:1: warning: [-Wmissing-signatures]
    Top-level binding with no type signature: main :: IO ()
  |
1 | main = do
  | ^^^^

input/code.hs:2:10: warning: [-Wtype-defaults]
    * Defaulting the following constraints to type `Integer'
        (Read a0) arising from a use of `readLn' at input/code.hs:2:10-15
        (Show a0) arising from a use of `print' at input/code.hs:5:5-27
        (Integral a0) arising from a use of `div' at input/code.hs:5:13-27
        (Ord a0) arising from a use of `min' at input/code.hs:5:21-27
    * In a stmt of a 'do' block: n <- readLn
      In the expression:
        do n <- readLn
           a <- readLn
           b <- readLn
           print $ n `div` min a b
      In an equation for `main':
          main
            = do n <- readLn
                 a <- readLn
                 b <- readLn
                 ....
  |
2 |     n <- readLn
  |          ^^^^^^

Code

main = do
    n <- readLn
    a <- readLn
    b <- readLn
    print $ n `div` min a b

Test details

Test 1

Verdict: ACCEPTED

input
100
1
1

correct output
100

user output
100

Test 2

Verdict: ACCEPTED

input
1
100
100

correct output
0

user output
0

Test 3

Verdict: ACCEPTED

input
50
2
3

correct output
25

user output
25

Test 4

Verdict: ACCEPTED

input
100
17
3

correct output
33

user output
33

Test 5

Verdict: ACCEPTED

input
5
5
5

correct output
1

user output
1