GeeksforGeeks Solution For Hard Domain .Below You Can Find The Solution Of School Basic ,Easy ,Medium . Or Hackerrank Solution You Can Also Direct Submit Your Solution to Geeksforgeeks Same Problem .You Need to login then you can submit you answers
Problem :- Squares in N*N Chessboard
Submit Your Solution :- Click Here
Solution :-
#include<stdio.h>
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
int n;
unsigned long long s;
scanf("%d",&n);
s = (n * (n + 1) / 2) * (2*n + 1) / 3;
printf("%llu",s);
printf("\n");
}
return 0;
}
Output:-
0 Comments: