码迷,mamicode.com
首页 > 其他好文 > 详细

数学入门题目

时间:2014-10-18 19:43:18      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   sp   div   

http://acm.hdu.edu.cn/showproblem.php?pid=1001

这题是等差求和,不能直接sum=(1+n)*n/2;因为题目只是说结果在32bit之内,但(1+n)*n很可能超出32bit,所以这样写WA。

#include <iostream>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <queue>
#include <algorithm>
#define inf 0x3f3f3f3f
using namespace std;

int main()
{
    __int64 n;
    while(scanf("%I64d",&n)!=EOF)
    {
        cout<<n*(1+n)/2<<endl<<endl;
    }
    return 0;
}

 

数学入门题目

标签:style   blog   http   color   io   os   ar   sp   div   

原文地址:http://www.cnblogs.com/zhangmingcheng/p/4033504.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!