mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:38:47 +00:00
26 lines
508 B
C++
26 lines
508 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int gcd(int x, int y) {
|
|
if (!y) {
|
|
return x;
|
|
}
|
|
return gcd(y, x % y);
|
|
}
|
|
|
|
int main() {
|
|
int a, b, l;
|
|
cin >> a >> b >> l;
|
|
int ansa = l, ansb = 1;
|
|
for (int i = 1; i <= l; i++) {
|
|
for (int j = 1; j <= l; j++) {
|
|
if (gcd(i, j) == 1 && i * b >= j * a && i * ansb < j * ansa) {
|
|
ansa = i;
|
|
ansb = j;
|
|
}
|
|
}
|
|
}
|
|
cout << ansa << ' ' << ansb << endl;
|
|
return 0;
|
|
} |