/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 0ms 324.0 KiB
#2 Accepted 0ms 324.0 KiB
#3 Accepted 8ms 428.0 KiB
#4 Accepted 8ms 428.0 KiB
#5 Accepted 1ms 320.0 KiB
#6 Accepted 112ms 428.0 KiB
#7 Wrong Answer 711ms 432.0 KiB
#8 Time Exceeded ≥1093ms ≥284.0 KiB

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:41:36
Judged At
2024-11-11 03:41:36
Judged By
Score
50
Total Time
≥1093ms
Peak Memory
≥432.0 KiB