0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-27 17:56:28 +00:00

P1151 子数整数

R39918125
This commit is contained in:
Baoshuo Ren 2020-10-16 21:08:18 +08:00 committed by Baoshuo Ren
parent c1a7d1dfbf
commit 4b3ce2cea6
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

16
problem/P1151/P1151.cpp Normal file
View File

@ -0,0 +1,16 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int k, f = 0;
cin >> k;
for (int i = 10000; i <= 30000; i++) {
if ((i / 100) % k == 0 && (i / 10 - i / 10000 * 1000) % k == 0 && (i - i / 1000 * 1000) % k == 0) {
cout << i << endl;
f = 1;
}
}
cout << (f ? "" : "No") << endl;
return 0;
}