-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbokam.cpp
53 lines (53 loc) · 961 Bytes
/
bokam.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <cstring>
#include <map>
#include <set>
using namespace std;
typedef long long int ll;
int cube[51];
int main()
{
ios_base::sync_with_stdio(false);
for(int i=0;i<51;i++)
cube[i]=i*i*i;
int n;
cin>>n;
int ans=0;
for(int i=1;i<51;i++){
if(cube[i]>n)
break;
if(cube[i]==n)
ans++;
for(int j=i;j<51;j++){
if(cube[j]+cube[i]>n)
break;
if(cube[j]+cube[i]==n)
ans++;
for(int k=j;k<51;k++){
if(cube[k]+cube[j]+cube[i]>n)
break;
if(cube[k]+cube[j]+cube[i]==n)
ans++;
for(int l=k;l<51;l++){
if(cube[l]+cube[k]+cube[j]+cube[i]>n)
break;
if(cube[l]+cube[k]+cube[j]+cube[i]==n)
ans++;
for(int m=l;m<51;m++){
if(cube[m]+cube[l]+cube[k]+cube[j]+cube[i]>n)
break;
if(cube[m]+cube[l]+cube[k]+cube[j]+cube[i]==n)
{
ans++;
break;
}
}
}
}
}
}
cout<<ans;
}