/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 21ms 2.898 MiB
#2 Wrong Answer 22ms 2.969 MiB

Code

b = int(input("Enter the base: "))
h = int(input("Enter the height: "))
hypotenous = int(input("Enter the hypotenous: "))

if hypotenous**2 == (b**2 + h**2):
    perimiter = b+h+hypotenous
    print(perimiter)
else:
    print("-1")

Information

Submit By
Type
Submission
Problem
P1027 Right triangle
Contest
Brain booster #2
Language
Python 3 (Python 3.12.3)
Submit At
2024-03-06 15:39:36
Judged At
2024-11-11 03:41:37
Judged By
Score
0
Total Time
22ms
Peak Memory
2.969 MiB