/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 0ms 516.0 KiB
#2 Accepted 0ms 284.0 KiB
#3 Accepted 8ms 512.0 KiB
#4 Accepted 8ms 424.0 KiB
#5 Accepted 1ms 320.0 KiB
#6 Accepted 106ms 424.0 KiB
#7 Wrong Answer 691ms 428.0 KiB
#8 Time Exceeded ≥1094ms ≥420.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){
            if (a >= b){
                a = abs(a-b);
                //printf("%d\n", a);
                count++;
            }
            else{
                b = abs(b-a);
                //printf("%d\n", b);
                count++;
                
            }
        }

        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:44:26
Judged At
2024-11-11 03:41:49
Judged By
Score
50
Total Time
≥1094ms
Peak Memory
≥516.0 KiB