/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 592.0 KiB
#2 Accepted 1ms 540.0 KiB
#3 Accepted 1ms 584.0 KiB
#4 Accepted 1ms 564.0 KiB
#5 Accepted 2ms 540.0 KiB
#6 Accepted 1ms 556.0 KiB
#7 Accepted 2ms 332.0 KiB
#8 Accepted 1ms 588.0 KiB
#9 Accepted 1ms 768.0 KiB

Code

#include <iostream>
using namespace std;

int gcd(int a, int b) {
    while (b) {
        int temp = b;
        b = a % b;
        a = temp;
    }
    return a;
}

int main() {
    int G, A, U;
    cin >> G;  

    for (int i = 1; i <= G; i++) {
        cin >> A >> U;  
        int g = gcd(A, U);  
        cout << "Game #" << i << ": " << (U / g) << " / " << (A / g) << endl;
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1001 Achievement-Unlocked
Language
C++17 (G++ 13.2.0)
Submit At
2025-01-30 18:48:49
Judged At
2025-01-30 18:48:49
Judged By
Score
100
Total Time
2ms
Peak Memory
768.0 KiB