/* This Submission is to determine how many 120/240 min const. delivery point there are. //info 120 req. steps <= 5 test_case 1,6 == 50 delivery point 2,3,4,5,7 == 80 delivery point 8,9 == 90 delivery point 10 > 100 delivery point */ #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef string::const_iterator State; #define Ma_PI 3.141592653589793 #define eps 0.00000001 #define LONG_INF 1e18 #define GOLD 1.61803398874989484820458 #define MAX_MOD 1000000007 #define MOD 1000000007 #define seg_size 262144 #define REP(a,b) for(long long a = 0;a < b;++a) unsigned long xor128() { static unsigned long x = time(NULL), y = 362436069, z = 521288629, w = 88675123; unsigned long t = (x ^ (x << 11)); x = y; y = z; z = w; return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8))); } long long func(long long n, long long a) { pair now; now.second = min(n, a-1); now.first = max(1LL, a - n); return max(0LL,now.second - now.first +1LL); } int main() { long long n, k; cin >> n >> k; //(a+c)(b+d) == k long long ans = 0; vector kouho; for (long long i = 1; i <= sqrt(k); ++i) { if (k % i == 0) { kouho.push_back(i); if (k / i != i) { kouho.push_back(k / i); } } } for (long long i = 0; i < kouho.size(); ++i) { long long A = func(n, kouho[i]); long long B = func(n, k / kouho[i]); ans += A * B; } cout << ans << endl; }