Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
const long long M=2e5+10,MOD=2000000007;
typedef long long ll;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t=1;
cin>>t;
while(t--){
int a;
cin>>a;
int res=-1;
for(int i=1;i<=20000;i++){
int d=a*a;
int c=i*i;
int e=sqrt(c+d);
if(e*e==c+d){
if(i+a>e && i+e>a && e+a>i){
res=max(res,i+a+e);
}
}
}
cout<<res<<"\n";
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1027 Right triangle
- Contest
- Brain booster #2
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-03-06 16:17:16
- Judged At
- 2024-11-11 03:41:22
- Judged By
- Score
- 5
- Total Time
- 2ms
- Peak Memory
- 532.0 KiB