/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 22ms 3.062 MiB
#2 Accepted 21ms 3.031 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-11-11 03:37:59
Judged By
Score
100
Total Time
22ms
Peak Memory
3.062 MiB