mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-24 00:48:47 +00:00
P1008 [NOIP1998 普及组] 三连击
R58784369
This commit is contained in:
parent
6cf0a2271b
commit
6c119e64e1
17
Luogu/problem/P1008/P1008.cpp
Normal file
17
Luogu/problem/P1008/P1008.cpp
Normal file
@ -0,0 +1,17 @@
|
||||
#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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user