/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Wrong Answer 13ms 2.777 MiB
#2 Runtime Error Traceback (most recent call last): File "foo.py", line 27, in <module> ValueError: invalid literal for int() with base 10: '\r' 13ms 2.777 MiB
#3 Wrong Answer 18ms 2.758 MiB
#4 Wrong Answer 17ms 2.879 MiB
#5 Wrong Answer 17ms 2.828 MiB
#6 Wrong Answer 16ms 2.684 MiB

Code

s=input()
if s == "":
    exit()
elif "=" not in s:
     exit()
else:
    try:
        LHS,RHS = s.split('=')
    except ValueError:
        exit()

for i in range(int(input())):
    try:
        X,Y=map(int,input().split())
    except ValueError:
        continue
    if 'y' in LHS:
        LHS = LHS.replace('y', '1')
        LHS_NEW=int(LHS)*Y
    else:
        LHS_NEW=int(LHS)

    if 'x' in RHS:
        L,R = RHS.split('x')
        L_NEW = int(L)*X
        if R!='':
            R_NEW=int(R)
        else:
            R_NEW=0
        RHS_NEW=L_NEW + R_NEW
    else:
        RHS_NEW=int(RHS)
    if LHS_NEW==RHS_NEW:
        print("YES")
    else:
        print("NO")

Information

Submit By
Type
Submission
Problem
P1015 Friend in need is a friend indeed
Language
Python 3 (Python 3.12.3)
Submit At
2024-01-08 07:44:31
Judged At
2024-01-08 07:44:31
Judged By
Score
0
Total Time
18ms
Peak Memory
2.879 MiB