fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. int M, N;
  6. cin >> M;
  7. vector<int> numeros(M);
  8. for(int i = 0; i < M; i++) {
  9. cin >> numeros[i];
  10. }
  11. cin >> N;
  12.  
  13. int clave = INT_MAX;
  14. for(int i = 0; i < M; i++) {
  15. if(numeros[i] > N && numeros[i] < clave) {
  16. clave = numeros[i];
  17. }
  18. }
  19. cout << clave << endl;
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0s 5288KB
stdin
10
19
10
11
13
5
8
32
2
15
52
20
stdout
32