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

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

原创


Sum Problem

Time Limit: 1000/500 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 560410 Accepted Submission(s): 142045

Problem Description
Hey, welcome to HDOJ(Hangzhou Dianzi University Online Judge).
In this problem, your task is to calculate SUM(n) = 1 + 2 + 3 + ... + n.
 
Input
The input will consist of a series of integers n, one integer per line.
 
Output
For each case, output SUM(n) in one line, followed by a blank line. You may assume the result will be in the range of 32-bit signed integer.
 
Sample Input
1
100
 
Sample Output
1
 
5050
 
Author
DOOM III
 
  
此题有个小坑,每一个输入输出案例之间都要有一个空行:
2
3
(空行)
100
5050
Accepted
1 import java.util.*; 2  3 public class HDOJ_1001 { 4  5     public static void main(String[] args) { 6         Scanner reader=new Scanner(System.in); 7         while(reader.hasNext()) { 8             long n=reader.nextInt(); 9             long sum=((1+n)*n)/2;10             System.out.println(sum);11             System.out.println();;12         }13     }14 15 }

12:04:33

2018-08-15

转载于:https://www.cnblogs.com/chiweiming/p/9480657.html

你可能感兴趣的文章
DLA实现跨地域、跨实例的多AnalyticDB读写访问
查看>>
实时编辑
查看>>
北漂之毕业裁员后的又一波奇遇
查看>>
Python数据分析:pandas常用函数
查看>>
KVO原理分析及使用进阶
查看>>
Vue系列(四):模块化开发、Elment UI、自定义全局组件(插件)、Vuex
查看>>
【348天】每日项目总结系列086(2018.01.19)
查看>>
extjs-mvc结构实践(五):实现用户管理的增删改查
查看>>
【JS基础】初谈JS现有的数据类型
查看>>
【294天】我爱刷题系列053(2017.11.26)
查看>>
Microsoft发布了Azure Bot Service和LUIS的GA版
查看>>
Google发布Puppeteer 1.0
查看>>
窗口进度条及其高级使用
查看>>
实录分享&视频 | 微软Visual Studio Code是这样支持Docker的
查看>>
放弃OpenStack?恐怕还不到时候
查看>>
苏宁精准营销之生成人群包的演进
查看>>
.NET开源现状
查看>>
Dave Farley:持续交付的基本原理
查看>>
可替换元素和非可替换元素
查看>>
2016/08/25 The Secret Assumption of Agile
查看>>