/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Accepted 1ms 524.0 KiB
#3 Accepted 6ms 548.0 KiB
#4 Accepted 10ms 548.0 KiB
#5 Accepted 4ms 764.0 KiB
#6 Accepted 31ms 544.0 KiB
#7 Wrong Answer 74ms 536.0 KiB
#8 Time Exceeded ≥1085ms ≥424.0 KiB

Code

#include <iostream>
#include <cmath>
using namespace std;
int main() {
    
    //SAYED AL MAMUN_LU
    
    int t;
    cin >> t;

    while (t--) {
        int a, b, 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:34:29
Judged At
2024-11-11 03:41:18
Judged By
Score
50
Total Time
≥1085ms
Peak Memory
≥764.0 KiB