hdu 1000&hdu1001

Posted 行尸走肉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 1000&hdu1001相关的知识,希望对你有一定的参考价值。

1001

#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
    long long n;
    while(~scanf("%I64d",&n))
    {
        printf("%I64d\n\n",((1+n)*n)>>1);
    }
    return 0;
}

 

1000

import java.io.*;
import java.math.BigInteger;
import java.util.*;
public class hdu1000 {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
         Scanner cin=new Scanner (new BufferedInputStream(System.in));
            PrintWriter cout=new PrintWriter(System.out);

            while(cin.hasNextBigInteger())
            {
                BigInteger t=cin.nextBigInteger();
                BigInteger m=cin.nextBigInteger();
                BigInteger ans =0;
                ans=t.add(m);
                System.out.println(ans);


            }
    }


}

 

以上是关于hdu 1000&hdu1001的主要内容,如果未能解决你的问题,请参考以下文章

hdu-1001Sum Problem

hdu 1001 Sum Problem

hdu 1001 Sum Problem

HDUOJ基础题HDU1001

2016icpc沈阳站网络赛 1001&hdu5892 Resident Evil

2017ICPC/广西邀请赛1001(水)HDU6181