| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 911 | 龚施宇 | 判断三角形形状 | C++ | Wrong Answer | 66 | 0 MS | 260 KB | 183 | 2019-09-22 21:12:23 |
#include<iostream> int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if(c*c+b*b<a*a) printf("1"); if(c*c+b*b==a*a) printf("2"); if(c*c+b*b>a*a) printf("3"); return 0; }