Time Exceeded
Code
#include <iostream>
#include <cmath>
using namespace std;
int main() {
//SAYED AL MAMUN_LU
int t;
cin >> t;
while (t--) {
long long int a, b;
int sum = 0;
cin >> a >> b;
while (a > 0 && b > 0) {
if (a > b) {
a = abs(a - b);
}
else {
b = abs(b - a);
}
sum++;
}
cout << sum << endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1029 Make it zero
- Contest
- Brain booster #2
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-03-06 16:40:31
- Judged At
- 2024-11-11 03:41:14
- Judged By
- Score
- 50
- Total Time
- ≥1093ms
- Peak Memory
- ≥544.0 KiB