/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 3ms 412.0 KiB

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
Pretest
Problem
P1025 GCM
Language
C++20 (G++ 13.2.0)
Submit At
2024-03-06 13:37:39
Judged At
2024-03-06 13:37:39
Judged By
Score
0
Total Time
3ms
Peak Memory
412.0 KiB