练习专区

今天的一小步就是明天的一大步
Problem 1685 求三个奇怪的数字之和
Accepted: 0   Total Submit: 26
Time Limit: 1000ms   Memory Limit: 30720KB
Description
求以下三数的和,保留2位小数:1~a之和、1~b的平方和、1~c的倒数和。
Input
三个整数:a b c
Output
1+2+...+a+1^2+2^2+...+b^2+1/1+1/2+...+1/c的和,保留2位小数。
Sample Input
100 50 10
Sample Output
47977.93
Hint
提交     返回