/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 14ms 3.02 MiB
#2 Wrong Answer 15ms 3.125 MiB

Code

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

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:28:27
Judged At
2024-11-11 03:38:43
Judged By
Score
20
Total Time
15ms
Peak Memory
3.125 MiB