Sum of numbersProblem code: NUMSUM |
All submissions for this problem are available.
According to folklore, the great mathematician Gauss was able to calculate the sum of the first 50 natural numbers in mere seconds. You are given a similar problem, where you have to calculate the sum of the first 'n' natural numbers. The only catch being that the the number 'n' can be really very large. You have to calculate the sum 1+2+...+n for a given value of 'n'.
Input
The first line consists of a number 't which specifies the number of test cases. 1<=t<=100. 't' lines follow with a number 'n' on each line. 'n' can have upto 20001 digits. 1<=n<=(10^20000).
Output
For each test case, output a number which represents the sum of the first 'n' natural numbers.
Example
Input: 2 3 5 Output: 6 15 Explanation The sum of the first 3 numbers is 1+2+3 = 6 The sum of the first 5 numbers is 1+2+3+4+5 = 15
| Date: | 2009-07-22 |
| Time limit: | 22s |
| Source limit: | 50000B |
| Languages: | All except: TCL ERL |
| Resource: | Popular |
Comments
Loading Comments...
SUCCESSFUL SUBMISSIONS FOR THIS PROBLEM:
Loading Submissions...RECENT ACTIVITY FOR THIS PROBLEM:
Loading Recent Activity...HELP
Program should read from standard input and write to standard output.
After you submit a solution you can see your results by clicking on the [My Submissions] tab on the problem page. Below are the possible results:
- Accepted
Your program ran successfully and gave a correct answer. If there is a score for the problem, this will be displayed in parenthesis next to the checkmark. - Time Limit Exceeded
Your program was compiled successfully, but it didn't stop before time limit. Try optimizing your approach. - Wrong Answer
Your program compiled and ran succesfully but the output did not match the expected output. - Runtime Error
Your code compiled and ran but encountered an error. The most common reasons are using too much memory or dividing by zero. For the specific error codes see the help section. - Compilation Error
Your code was unable to compile. When you see this icon, click on it for more information.
If you are still having problems, see a sample solution here.
