Time Exceeded
Code
#include <stdio.h>
int main(){
long long int a, b;
int t;
scanf("%d", &t);
int i = 1;
while(i <= t){
scanf("%lld %lld", &a, &b);
int count = 0;
while(a != 0){
a = abs(a);
b = abs(b);
if (a >= b){
a = a-b;
//printf("%d\n", a);
count++;
}
else{
b = b-a;
//printf("%d\n", b);
count++;
if (b == 0){
break;
}
}
}
printf("%d\n", count);
i++;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1029 Make it zero
- Contest
- Brain booster #2
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2024-03-06 15:43:29
- Judged At
- 2024-11-11 03:41:35
- Judged By
- Score
- 50
- Total Time
- ≥1088ms
- Peak Memory
- ≥432.0 KiB