# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
41358 | 2018-02-16T19:12:27 Z | gabrielsimoes | Sequence (BOI14_sequence) | C++14 | 11 ms | 1316 KB |
#include <bits/stdc++.h> using namespace std; bool test(int a, int b) { while (a > 0) { if (b == (a % 10)) return true; else a /= 10; } return false; } int n; vector<int> v; int main() { scanf("%d", &n); for (int i = 0, a; i < n; i++) { scanf("%d", &a); v.push_back(a); } // if (n <= 10000) { // for (int ans = 1; ans <= 10000; ans++) { // bool ok = true; // for (int i = 0; i < n; i++) { // if (!test(ans + i, v[i])) ok = false; // } // if (ok) { // printf("%d\n", ans); // return 0; // } // } // } int x = v[0]; if (x > 0 && x < 9) { printf("%d", x); int cur = 1; while (n >= cur + 1) { printf("0"); cur *= 10; } printf("\n"); } if (x == 9) { int cur = 1; while (n >= cur + 1) { printf("8"); cur = cur * 10 + 1; } printf("9\n"); } if (x == 0) { printf("10"); if (n != 1) { int cur = 1; while (n > cur) { printf("0"); cur = cur * 10 + 1; } } printf("\n"); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 248 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 352 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 404 KB | Output is correct |
2 | Correct | 2 ms | 588 KB | Output is correct |
3 | Correct | 3 ms | 588 KB | Output is correct |
4 | Correct | 2 ms | 588 KB | Output is correct |
5 | Correct | 2 ms | 704 KB | Output is correct |
6 | Correct | 2 ms | 704 KB | Output is correct |
7 | Correct | 8 ms | 1240 KB | Output is correct |
8 | Correct | 6 ms | 1240 KB | Output is correct |
9 | Correct | 11 ms | 1316 KB | Output is correct |
10 | Correct | 11 ms | 1316 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 1316 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |