import java.util.Scanner;
/**
* 200B - Drinks [http://codeforces.com]
*
* @author BreakDark
* @version 1.0 beta
*/
// ACEPTADO!!! xD
public class Main {
public static void main(String[] args) {
Scanner Lee;
byte n;
int sumPi;
byte i; // bucles
// AQUI INICIA EL PROGRAMA
Lee = new Scanner(System.in);
while (Lee.hasNext()) {
n = Lee.nextByte();
sumPi = 0;
for (i = 0; i < n; i++)
sumPi += Lee.nextInt();
System.out.println(String.format("%.12f", ((double) sumPi / n))
.replace(',', '.'));
}
}
}
|
Blog dedicado a la publicación de artículos, programas propios, traducciones de Roms de Nes, super Nes y mas, y alguno que otro artículo sobre tecnologia.
Thursday, June 28, 2012
Solución a 200B - Drinks [http://codeforces.com] con Java
Solución a 200B - Drinks [http://codeforces.com] el enlace del problema está en el siguiente link
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment