Wrong Answer
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<<m<<endl;
}
else{
cout<<-1<<endl;
}
}
int main()
{
int t; cin>>t;
while(t--) solve();
}
Information
- Submit By
- Type
- Submission
- Problem
- P1025 GCM
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-10-03 14:42:56
- Judged At
- 2024-11-11 02:51:21
- Judged By
- Score
- 2
- Total Time
- 2ms
- Peak Memory
- 524.0 KiB