/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Accepted 14ms 2.961 MiB
#2 Runtime Error Traceback (most recent call last): File "foo.py", line 15, in <module> ValueError: invalid literal for int() with base 10: '\r' 14ms 2.91 MiB
#3 Accepted 20ms 3.0 MiB
#4 Accepted 20ms 3.066 MiB
#5 Accepted 20ms 3.105 MiB
#6 Accepted 20ms 2.922 MiB

Code

s = input() 

for _ in range(int(input())):
    x, y = map(int, input().split())

    if "x" not in s:
        m = 0
        c = int(s[1:])
    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:26:15
Judged At
2024-10-03 14:04:45
Judged By
Score
80
Total Time
20ms
Peak Memory
3.105 MiB