Problem E: Computation - Min, Max and Sum

"
Time Limit $1$ 秒/Second(s) Memory Limit $512$ 兆字节/Megabyte(s)
提交总数 $1019$ 正确数量 $555$
裁判形式 标准裁判/Standard Judge 我的状态 尚未尝试
难度 分类标签 STL STL

Min, Max and Sum 

Write a program which reads a sequence of n integers ai(i=1,2,...n), and prints the minimum value, maximum value and sum of the sequence.

In the first line, an integer n is given. In the next line, n integers ai are given in a line.
Print the minimum value, maximum value and sum in a line. Put a single space between the values.
5
10 1 5 4 17
1 17 37

0<n<=10000

-1000000<=ai<=1000000