博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
3507
阅读量:4972 次
发布时间:2019-06-12

本文共 2277 字,大约阅读时间需要 7 分钟。

 
1
//
include file
2
#include
<
cstdio
>
3
#include
<
cstdlib
>
4
#include
<
cstring
>
5
#include
<
cmath
>
6
#include
<
cctype
>
7
#include
<
ctime
>
8
9
#include
<
iostream
>
10
#include
<
sstream
>
11
#include
<
fstream
>
12
#include
<
iomanip
>
13
#include
<
bitset
>
14
#include
<
strstream
>
15
16
#include
<
algorithm
>
17
#include
<
string
>
18
#include
<
vector
>
19
#include
<
queue
>
20
#include
<
set
>
21
#include
<
list
>
22
#include
<
functional
>
23
24
using
namespace
std;
25
26
//
typedef
27
typedef
long
long
LL;
28
typedef unsigned
long
long
ULL;
29
30
//
31
#define
read freopen("in.txt","r",stdin)
32
#define
write freopen("out.txt","w",stdout)
33
#define
FORi(a,b,c) for(int i=(a);i<(b);i+=c)
34
#define
FORj(a,b,c) for(int j=(a);j<(b);j+=c)
35
#define
FORk(a,b,c) for(int k=(a);k<(b);k+=c)
36
#define
FORp(a,b,c) for(int p=(a);p<(b);p+=c)
37
#define
FORii(a,b,c) for(int ii=(a);ii<(b);ii+=c)
38
#define
FORjj(a,b,c) for(int jj=(a);jj<(b);jj+=c)
39
#define
FORkk(a,b,c) for(int kk=(a);kk<(b);kk+=c)
40
41
#define
FF(i,a) for(int i=0;i<(a);i+++)
42
#define
FFD(i,a) for(int i=(a)-1;i>=0;i--)
43
#define
Z(a) (a<<1)
44
#define
Y(a) (a>>1)
45
46
const
double
eps
=
1e
-
6
;
47
const
double
INFf
=
1e10;
48
const
int
INFi
=
1000000000
;
49
const
double
Pi
=
acos(
-
1.0
);
50
51
template
<
class
T
>
inline T sqr(T a){
return
a
*
a;}
52
template
<
class
T
>
inline T TMAX(T x,T y)
53
{
54
if
(x
>
y)
return
x;
55
return
y;
56
}
57
template
<
class
T
>
inline T TMIN(T x,T y)
58
{
59
if
(x
<
y)
return
x;
60
return
y;
61
}
62
template
<
class
T
>
inline
void
SWAP(T
&
x,T
&
y)
63
{
64
T t
=
x;
65
x
=
y;
66
y
=
t;
67
}
68
template
<
class
T
>
inline T MMAX(T x,T y,T z)
69
{
70
return
TMAX(TMAX(x,y),z);
71
}
72
73
74
//
code begin
75
int
A[
6
],Amin,Amax,ans;
76
77
int
main()
78
{
79
read;
80
write;
81
while
(scanf(
"
%d %d %d %d %d %d
"
,A,A
+
1
,A
+
2
,A
+
3
,A
+
4
,A
+
5
)
!=-
1
)
82
{
83
if
(A[
0
]
+
A[
1
]
+
A[
2
]
+
A[
3
]
+
A[
4
]
+
A[
5
]
==
0
)
break
;
84
Amin
=
INFi;
85
Amax
=
-
1
;
86
ans
=
0
;
87
FORi(
0
,
6
,
1
)
88
{
89
ans
+=
A[i];
90
Amin
=
TMIN(Amin,A[i]);
91
Amax
=
TMAX(Amax,A[i]);
92
}
93
printf(
"
%g\n
"
,(ans
-
Amin
-
Amax
+
0.0
)
/
4.0
);
94
}
95
return
0
;
96
}

转载于:https://www.cnblogs.com/ac2012/archive/2011/03/08/1976668.html

你可能感兴趣的文章
前端利器躬行记(6)——Fiddler
查看>>
Forbidden You don't have permission to access / on this server.
查看>>
Intellij Idea新建web项目(转)
查看>>
用JAVA编写浏览器内核之实现javascript的document对象与内置方法
查看>>
centos iptables
查看>>
unity3d 移动与旋转 2
查看>>
寻找二叉查找树中比指定值小的所有节点中最大的那个节点
查看>>
如何设置输入框达到只读效果
查看>>
RT3070 USB WIFI 在连接socket编程过程中问题总结
查看>>
MIS外汇平台荣获“2013年全球最佳STP外汇交易商”
查看>>
LeetCode 题解之Add Digits
查看>>
hdu1502 , Regular Words, dp,高精度加法
查看>>
20120227_CET6
查看>>
SpringBoot在idea中的热部署配置
查看>>
MyEclipse连接SQL Server 2008数据库的操作方法
查看>>
leetcode【67】-Bulb Switcher
查看>>
JS验证图片格式和大小并预览
查看>>
laravel5.2 移植到新服务器上除了“/”路由 ,其它路由对应的页面显示报404错误(Object not found!)———新装的LAMP没有加载Rewrite模块...
查看>>
编写高质量代码--改善python程序的建议(六)
查看>>
windows xp 中的administrator帐户不在用户登录内怎么解决?
查看>>