Wrong Answer
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
int64_t a, b, c, x;
cin >> a >> b >> c >> x;
int64_t L = a / __gcd(a, b) * b;
int64_t lcm = L / __gcd(L, c) * c;
if (lcm >= x) cout << "-1\n";
else {
int64_t res = x / lcm * lcm;
cout << (res == x ? -1 : res) << "\n";
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tc = 1;
cin >> tc;
for (int cs = 1; cs <= tc; cs++) {
solve(cs);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1025 GCM
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-13 06:18:52
- Judged At
- 2024-11-11 03:26:44
- Judged By
- Score
- 2
- Total Time
- 1ms
- Peak Memory
- 436.0 KiB