0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 04:25:25 +00:00
OI-codes/Luogu/P1008/P1008.cpp

18 lines
415 B
C++

#include <bits/stdc++.h>
using namespace std;
int a, b, c, f[] = {1, 2, 3, 4, 5, 6, 7, 8, 9};
int main() {
do {
a = f[0] * 100 + f[1] * 10 + f[2];
b = f[3] * 100 + f[4] * 10 + f[5];
c = f[6] * 100 + f[7] * 10 + f[8];
if (a * 3 == c && b * 3 == c * 2) {
cout << a << ' ' << b << ' ' << c << endl;
}
} while (next_permutation(f, f + 9));
return 0;
}