「JoyOI1109」幻方
描述 Description
在一个由若干个排列整齐的数组成的正方形中,图中任意一横行、一纵行及对角线的几个数之和都相等,具有这种性质的图表,称为幻方。
目前已经确定,N阶幻方(n>=3)都可以构造出幻方。
我们的问题是,当构造的幻方,任意一横行的数累加的和是多少。
我们的问题是,当构造的幻方,任意一横行的数累加的和是多少。
输入格式 InputFormat
一个数n表示n阶幻方 n<=10000
输出格式 OutputFormat
一个数,任意一横行的数累加的和
样例输入 SampleInput
3
样例输出 SampleOutput
15
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include<iostream> #include<cstdio> #define ll long long using namespace std; ll n; ll ans; int main() { scanf("%lld",&n); ans=(n*n+1)*n>>1; printf("%lld",ans); return 0; } |
Subscribe