/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 13ms 2.914 MiB
#2 Wrong Answer 13ms 2.902 MiB

Code

T = int(input())
for i in range(T):
    A,B,C = map(int, input().split())
   
    if A+B>C and A+C>B and B+C>A:
        print("YES")
else:
    print("NO")

Information

Submit By
Type
Submission
Problem
P1047 3buj
Language
Python 3 (Python 3.12.3)
Submit At
2024-03-27 21:31:07
Judged At
2024-03-27 21:31:07
Judged By
Score
20
Total Time
13ms
Peak Memory
2.914 MiB