CSES - Datatähti 2022 alku - Results
Submission details
Task:Karkit
Sender:Elitragen
Submission time:2021-11-01 18:45:36 +0200
Language:PyPy3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.07 sdetails
#20.07 sdetails
#30.07 sdetails
#40.07 sdetails
#50.07 sdetails

Code

n=input()
a=input()
b=input()

list=[]

if n < 3:
    print(0)
else:
    for i in range(0,n+1):
        if i*a + b <= n:
            list.append(i+1)
    list=sorted(list)
    print(list[-1])
print(list)

Test details

Test 1

Verdict:

input
100
1
1

correct output
100

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    if n < 3:
TypeError: '<' not supported between instances of 'str' and 'int'

Test 2

Verdict:

input
1
100
100

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    if n < 3:
TypeError: '<' not supported between instances of 'str' and 'int'

Test 3

Verdict:

input
50
2
3

correct output
25

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    if n < 3:
TypeError: '<' not supported between instances of 'str' and 'int'

Test 4

Verdict:

input
100
17
3

correct output
33

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    if n < 3:
TypeError: '<' not supported between instances of 'str' and 'int'

Test 5

Verdict:

input
5
5
5

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 7, in <module>
    if n < 3:
TypeError: '<' not supported between instances of 'str' and 'int'