1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <bits/stdc++.h>
using namespace std;

int main()
{
    ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);

    int n;
    int ans=0;
    cin>>n;
    for(int i=1; i<=(n/7)+1; ++i)
    {
        if(n%i==0)
        {
            int x=(n/i)-1;
            for(int j=2; j<=(x/3)+1; ++j)
            {
                if(x%j==0)
                {
                    if(x/j<3) break;
                    ans++;
                }
            }
        }
    }

    cout<<ans;


    return 0;
}