Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
const long long M=3e5+10,MOD=1000000007;
typedef long long ll;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t=1;
cin>>t;
while(t--){
ll a,b,c,x;
cin>>a>>b>>c>>x;
ll d=(a*b)/__gcd(a,b);
if(d>=x){
cout<<-1<<"\n";
continue;
}
d=(d*c)/__gcd(d,c);
if(d>=x)d=-1;
cout<<d<<"\n";
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1025 GCM
- Contest
- Brain booster #2
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-03-06 13:38:40
- Judged At
- 2024-11-11 03:42:17
- Judged By
- Score
- 2
- Total Time
- 1ms
- Peak Memory
- 764.0 KiB