poj 2924

Description

Johann Carl Friedrich Gauß (1777 – 1855) was one of the most important German mathematicians. For those of you who remember the Deutsche Mark, a picture of him was printed on the 10 – DM bill. In elementary school, his teacher J. G. Büttner tried to occupy the pupils by making them add up the integers from 1 to 100. The young Gauß surprised everybody by producing the correct answers (5050) within seconds.

Can you write a computer program that can compute such sums really quickly?

Given two integers n and m, you should compute the sum of all the integers from n to m. In other words, you should compute

Input

The first line contains the number of scenarios. Each scenario consists of a line containing the numbers n and m (−109nm ≤ 109).

Output

The output for every scenario begins with a line containing “Scenario #i:”, where i is the number of the scenario starting at 1. Then print the sum of all integers from n to m. Terminate the output for the scenario with a blank line.

Sample Input

3
1 100
-11 10
-89173 938749341

Sample Output

Scenario #1:
5050

Scenario #2:
-11

Scenario #3:
440625159107385260

View Code
 1 #include<iostream>
 2 using namespace std;
 3 int main()
 4 {
 5     int n , count = 1;
 6     __int64 x , y, temp;
 7     __int64 sum;
 8     cin>>n;
 9     temp = n;
10     while(temp--)
11     {
12         sum = 0;
13         scanf("%I64d%I64d" , &x , &y);
14         sum = (x+y)*(y-x+1)/2;
15         cout<<"Scenario #"<<count<<':'<<endl;
16         printf("%I64d\n" , sum);
17         if(count!=n) cout<<endl;
18         count++;
19     }
20     return 0;
21 }

 

转载于:https://www.cnblogs.com/nigel-jw/archive/2013/05/06/3063869.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值