mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 13:58:48 +00:00
parent
0932ac15cd
commit
728d3da95e
29
Luogu/P2261/P2261.cpp
Normal file
29
Luogu/P2261/P2261.cpp
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using std::cin;
|
||||||
|
using std::cout;
|
||||||
|
const char endl = '\n';
|
||||||
|
|
||||||
|
long long n, k, ans;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::ios::sync_with_stdio(false);
|
||||||
|
|
||||||
|
cin >> n >> k;
|
||||||
|
|
||||||
|
ans = n * k;
|
||||||
|
|
||||||
|
for (long long l = 1, r; l <= n; l = r + 1) {
|
||||||
|
if (k / l) {
|
||||||
|
r = std::min(k / (k / l), n);
|
||||||
|
} else {
|
||||||
|
r = n;
|
||||||
|
}
|
||||||
|
|
||||||
|
ans -= (r + l) * (k / l) * (r - l + 1) / 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
cout << ans << endl;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user