0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:05:24 +00:00
OI-codes/Luogu/P1151/P1151.cpp

17 lines
363 B
C++

#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;
}