#define _GLIBCXX_DEBUG #include using namespace std; #include #include #include #include long long cnt[333]; int main(){ for(long long x=1;x<4445;x++){ for(long long y=1;y<4445;y++){ for(long long z=1;z<4445;z++){ if(x*x*x*x+y*y*y*y+z*z*z*z<=4444ll*4444ll*4444ll*4444ll){ cnt[(x*x*x+y*y*y+z*z*z)%333]+=1; } } } } int A;cin>>A; cout<