Accepted
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