atcoder#ABC230E. [ABC230E] Fraction Floor Sum
[ABC230E] Fraction Floor Sum
Score : points
Problem Statement
Given is a positive integer . Find the value $\displaystyle\sum_{i=1}^N \left[ \frac{N}{i} \right]$.
Here, for a real number , denotes the largest integer not exceeding .
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
3
5
We have $\left[ \frac{3}{1} \right]+\left[ \frac{3}{2} \right]+\left[ \frac{3}{3} \right]=3+1+1=5$.
10000000000
231802823220
Note that the input and output may not fit into a -bit integer type.