ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1011. Conductors

For python users having RE1
Posted by elsa.mathlover 10 Aug 2020 13:48
Input in the task looks like:
13 14.1

Not like:
13
14.1

So change input in your program to
p,q=map(float, input().split())