Accepted
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;
ll res=-1;
for(ll i=1;i<=1000000;i++){
ll d=a*a;
ll c=i*i;
ll e=(ll)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:21:06
- Judged At
- 2024-11-11 03:41:20
- Judged By
- Score
- 100
- Total Time
- 25ms
- Peak Memory
- 568.0 KiB