CSES - Datatähti 2022 alku - Results
Submission details
Task:Karkit
Sender:Markus N
Submission time:2021-10-05 11:31:08 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.02 sdetails
#20.03 sdetails
#30.02 sdetails
#40.02 sdetails
#50.02 sdetails

Code

n,a,b = [int(3) for 3 in input().split()]

print(a+b)
if a ==b:
    print(n//a)
elif a>b:
    print(n//b)
else:
    print(n//a)

Test details

Test 1

Verdict:

input
100
1
1

correct output
100

user output
(empty)

Error:
File "input/code.py", line 1
    n,a,b = [int(3) for 3 in input().split()]
                       ^
SyntaxError: can't assign to literal

Test 2

Verdict:

input
1
100
100

correct output
0

user output
(empty)

Error:
File "input/code.py", line 1
    n,a,b = [int(3) for 3 in input().split()]
                       ^
SyntaxError: can't assign to literal

Test 3

Verdict:

input
50
2
3

correct output
25

user output
(empty)

Error:
File "input/code.py", line 1
    n,a,b = [int(3) for 3 in input().split()]
                       ^
SyntaxError: can't assign to literal

Test 4

Verdict:

input
100
17
3

correct output
33

user output
(empty)

Error:
File "input/code.py", line 1
    n,a,b = [int(3) for 3 in input().split()]
                       ^
SyntaxError: can't assign to literal

Test 5

Verdict:

input
5
5
5

correct output
1

user output
(empty)

Error:
File "input/code.py", line 1
    n,a,b = [int(3) for 3 in input().split()]
                       ^
SyntaxError: can't assign to literal