Task: | Karkit |
Sender: | ZakkeX |
Submission time: | 2021-10-04 09:00:28 +0300 |
Language: | Haskell |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 100 |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.01 s | details |
#2 | ACCEPTED | 0.01 s | details |
#3 | ACCEPTED | 0.01 s | details |
#4 | ACCEPTED | 0.01 s | details |
#5 | ACCEPTED | 0.01 s | details |
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 |