| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 3188 | 罗炜翰 | 勾股数 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 261 | 2024-12-22 16:38:43 |
#include<iostream> using namespace std; int main() { int a,b,c,d,e,f; d = a * a; e = b * b; f = c * c; if (d == e + f || e == d + f || f == e + d) { cout<<"True"; } else { cout<<"False"; } }