HustOJ - 1013

 1 #include<stdio.h>
 2 int main()
 3 {
 4     int i,j,s,b,a;
 5     float t;
 6     s=0;
 7     for (i=1;i<=5;i++)
 8     {
 9         while(scanf("%d",&a)==1)
10         {
11                 for (j=1;j<=a;j++)
12                 {
13                     scanf("%d",&b);
14                     s=s+b;
15                 }
16                 t=s/(a/1.0);
17                 s=0;
18                 printf("%.3f\n",t);
19         }
20     }
21 }

1013 平 均 数

时间: 2024-10-06 20:11:42

HustOJ - 1013的相关文章

freefcw/hustoj Install Guide

First of all, this version hustoj is a skin and improved for https://code.google.com/p/hustoj/. So the you can migrate the old version web to this version without any big chance. This guide is not a deep tutorial for beginner, the base step for os an

BZOJ 1013: [JSOI2008]球形空间产生器sphere

二次联通门 : BZOJ 1013: [JSOI2008]球形空间产生器sphere /* BZOJ 1013: [JSOI2008]球形空间产生器sphere 高斯消元 QAQ SB的我也能终于能秒题了啊 设球心的坐标为(x,y,z...) 那么就可以列n+1个方程,化化式子高斯消元即可 */ #include <cstdio> #include <iostream> #include <cstring> #define rg register #define Max

HDU 1013 Digital Roots【字符串,水】

Digital Roots Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 79339    Accepted Submission(s): 24800 Problem Description The digital root of a positive integer is found by summing the digits of

PAT 1013

1013. Battle Over Cities (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue It is vitally important to have all the cities connected by highways in a war. If a city is occupied by the enemy, all the highways from/toward that cit

BZOJ 1013 [JSOI2008]球形空间产生器sphere 【高斯消元】

Description 有一个球形空间产生器能够在n维空间中产生一个坚硬的球体.现在,你被困在了这个n维球体中,你只知道球面上n+1个点的坐标,你需要以最快的速度确定这个n维球体的球心坐标,以便于摧毁这个球形空间产生器. HINT 1<=n<=10 提示:给出两个定义:1. 球心:到球面上任意一点距离都相等的点.2. 距离:设两个n为空间上的点A, B的坐标为(a1, a2, …, an), (b1, b2, …, bn),则AB的距离定义为:dist = sqrt( (a1-b1)^2 +

LightOJ 1013 LCS+记忆化搜索

http://www.lightoj.com/volume_showproblem.php?problem=1013 题目大意: 给两个字符串,问最短的满足子串包含给的两个字符串的字符串的最短长度,以及最短长度的字符串的个数. 第一个问题就是简单的LCS,两个串长度和减去公共部分. 第二个问题要进行记忆话搜索来查找.dp(i,j,l)(第一个串i位,第二个串j位,总串l位) 转移方程 dp(i,j,l) = dp(i-1,j-1,l-1) (s1[i] = s2[j]时) dp(i,j,l) =

研(tu)究(cao)SFTP(HUSTOJ)……

学校题库加数据,HUSTOJ一点也不人道,数据不能一起加,只能一个一个手动加,20组数据一共40个文件真是累-- 于是SFTP一发,发现在外网下没root权限不能加数据--woc 试了很多方法,最终都指向开一个新账户然后赋予root权限,但是太不安全了所以没敢试(好歹也是学校财产--) 忍了,手动添加20组数据. 不过putty上去可以sudo su到root权限,并且可以给SPJ加权限使其运行,这个还有用-- 如果需要在外网向服务器传数据或者SPJ源文件就手动吧没人能救了--加SPJ的话put

题目1013:开门人和关门人(结构体自定义cmp排序)

题目链接:http://ac.jobdu.com/problem.php?pid=1013 详解链接:https://github.com/zpfbuaa/JobduInCPlusPlus 参考代码: // // 1013 开门人和关门人.cpp // Jobdu // // Created by PengFei_Zheng on 28/04/2017. // Copyright © 2017 PengFei_Zheng. All rights reserved. // #include <st

问题 1013: C语言程序设计教程(第三版)课后习题6.3

/******************************************************************** @file Main.cpp @date 2017-05-10 @author Zoro_Tiger @brief 问题 1013: C语言程序设计教程(第三版)课后习题6.3 http://www.dotcpp.com/oj/problem1013.html *************************************************