fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. class Ideone
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. Scanner in = new Scanner(System.in);
  10. int i, n;
  11. n=in.nextInt();
  12. i=in.nextInt();
  13. if (i<=n) {
  14. double a, s=0, a_m;
  15. for (int j = 0; j < n; j++) {
  16. a=in.nextDouble();
  17. if (j != i) {s+=a;}
  18. }
  19. a_m = s/(n-1);
  20. System.out.printf("Ответ: %.1f", a_m);
  21. }
  22. else {System.out.printf("Условие не выполнено");}
  23. }
  24. }
Success #stdin #stdout 0.15s 321344KB
stdin
5 2 1 2 3 4 5
stdout
Ответ: 3.0