Problem 47159. Simple sum 1

Given two integers, L and U. Find the sum of integers bounded by L and U, (both inclusive). Modulo the sum with (10^9 + 7).
Example,
if L = 1, U = 2, output = 3. because 1+2 =3.
if L = 3, U = 5, output = 12, because 3+4+5 = 12.
both L and U will be positive.

Solution Stats

41.58% Correct | 58.42% Incorrect
Last Solution submitted on May 28, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers41

Suggested Problems

More from this Author5

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!