-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1654.cpp
24 lines (24 loc) · 832 Bytes
/
1654.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1654
#include <cstdio>
typedef int ll;
const ll maximo = 20 * 100;
int main() {
for (ll a = 8; a <= 125; a++) {
for (ll b = a; a + b <= 600; b++) {
for (ll c = b; a + b + c <= 1225; c++) {
if (a * b * c <= 1000000) continue;
ll cima = 1000000 * (a + b + c);
ll baixo = a * b * c - 1000000;
if (cima % baixo != 0) continue;
ll d = cima / baixo;
if (d >= c && a + b + c + d <= maximo) {
printf("%.2lf %.2lf %.2lf %.2lf\n", double(a * 0.01),
double(b * 0.01), double(c * 0.01),
double(d * 0.01));
}
}
}
}
return 0;
}