Code
#include<bits/stdc++.h>
using namespace std;
void solve()
{
long long a,b,c,x; cin>>a>>b>>c>>x;
long long m= lcm(a,lcm(b,c));
if(m>=x){
cout<<-1<<endl;
}
else{
int n=(x-1)/m*m;
cout<<n<<endl;
}
}
int main()
{
int t; cin>>t;
while(t--) solve();
}
Information
- Submit By
- Type
- Pretest
- Problem
- P1025 GCM
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-10-03 14:57:22
- Judged At
- 2024-11-11 02:51:18
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 332.0 KiB