#include <bits/stdc++.h>
using namespace std;
int main() {
int K;
cin >> K;
vector<int> B(K);
for (int &v : B) {
cin >> v;
}
for (int N = 1; N <= 1000; N++) {
bool Good = true;
for (int i = 0; i < K; i++) {
int tmp = N + i;
bool good = false;
while (tmp > 0) {
if (tmp % 10 == B[i]) {
good = true;
}
tmp /= 10;
}
if (!good) {
Good = false;
}
}
if (Good) {
cout << N << "\n";
break;
}
}
for (int x = 1; x <= 1000000; x *= 10) {
for (int y = 1; y <= 10; y++) {
int N = x * y;
bool Good = true;
for (int i = 0; i < K; i++) {
int tmp = N + i;
bool good = false;
while (tmp > 0) {
if (tmp % 10 == B[i]) {
good = true;
}
tmp /= 10;
}
if (!good) {
Good = false;
}
}
if (Good) {
cout << N << "\n";
break;
}
}
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
2 ms |
212 KB |
Output is correct |
3 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
2 ms |
212 KB |
Output is correct |
3 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |