#include <cstdio> #include <algorithm> bool t[500000]; int wyn = 0; void wst(int x) { rek: if (t[x]) { t[x] = 0; x++; goto rek; } else { t[x] = 1; wyn = std::max(wyn, x); } } int main() { int n; scanf("%d", &n); while (n--) { int v; scanf("%d", &v); wst(v); } printf("%d\n", wyn); }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #include <cstdio> #include <algorithm> bool t[500000]; int wyn = 0; void wst(int x) { rek: if (t[x]) { t[x] = 0; x++; goto rek; } else { t[x] = 1; wyn = std::max(wyn, x); } } int main() { int n; scanf("%d", &n); while (n--) { int v; scanf("%d", &v); wst(v); } printf("%d\n", wyn); } |