Runtime Error
Code
s = input() # y=-2x
for _ in range(int(input())):
x, y = map(int, input().split())
if "x" not in s:
m = 0
c = int(s)
else:
n = s.index("x")
m = int(s[2:n])
if n == len(s) - 1:
c = 0
else:
c = int(s[(n+1):])
if y == (m * x + c):
print("YES")
else:
print("NO")
Information
- Submit By
- Type
- Submission
- Problem
- P1015 Friend in need is a friend indeed
- Contest
- Brain booster - 1
- Language
- Python 3 (Python 3.12.3)
- Submit At
- 2023-12-31 16:21:10
- Judged At
- 2024-11-11 03:45:13
- Judged By
- Score
- 80
- Total Time
- 30ms
- Peak Memory
- 3.352 MiB