CSES - Datatähti 2022 alku - Results
Submission details
Task:Karkit
Sender:jogr
Submission time:2021-10-04 10:18:14 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.02 sdetails
#20.02 sdetails
#30.02 sdetails
#40.02 sdetails
#50.02 sdetails

Code

# Online Python compiler (interpreter) to run Python online.
# Write Python 3 code in this online editor and run it.
n, a, b = input()
print(int(n/a*b))

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 4, in <module>
    print(int(n/a*b))
TypeError: unsupported operand type(s) for /: 'str' and 'str'

Test 2

Verdict:

input
1
100
100

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    n, a, b = input()
ValueError: not enough values to unpack (expected 3, got 1)

Test 3

Verdict:

input
50
2
3

correct output
25

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    n, a, b = input()
ValueError: not enough values to unpack (expected 3, got 2)

Test 4

Verdict:

input
100
17
3

correct output
33

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 4, in <module>
    print(int(n/a*b))
TypeError: unsupported operand type(s) for /: 'str' and 'str'

Test 5

Verdict:

input
5
5
5

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    n, a, b = input()
ValueError: not enough values to unpack (expected 3, got 1)