/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 13ms 2.879 MiB
#2 Accepted 14ms 2.879 MiB

Code

#print(8)
list1=[]
n=int(input())
for x in range(n):
    a,b,c=map(int,input().split())
    if a + b > c and a + c > b and b + c > a:
        list1.append("YES")
    else:
        list1.append("NO")
for x in list1:
    print(x)

Information

Submit By
Type
Submission
Problem
P1047 3buj
Contest
TLE_Headquarters - round #1
Language
Python 3 (Python 3.12.3)
Submit At
2024-03-27 16:50:51
Judged At
2024-03-27 16:50:51
Judged By
Score
100
Total Time
14ms
Peak Memory
2.879 MiB