/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 332.0 KiB
#2 Accepted 1ms 332.0 KiB
#3 Accepted 5ms 424.0 KiB
#4 Accepted 13ms 428.0 KiB
#5 Accepted 1ms 328.0 KiB
#6 Accepted 54ms 512.0 KiB
#7 Time Exceeded ≥1070ms ≥416.0 KiB
#8 Time Exceeded ≥1021ms ≥284.0 KiB

Code

#include <stdio.h>

int main(){

    int a, b, t;

    scanf("%d", &t);

    int i = 1;

    while(i <= t){
        scanf("%d %d", &a, &b);

        int count = 0;

        while(a != 0){
            if (a >= b){
                a = abs(a-b);
                //printf("%d\n", a);
                count++;
            }
            else{
                b = abs(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 14:38:38
Judged At
2024-11-11 03:41:50
Judged By
Score
50
Total Time
≥1070ms
Peak Memory
≥512.0 KiB