CodeForces 592B

题目链接:

http://codeforces.com/problemset/problem/592/B

这个题目没啥说的,画图找规律吧,哈哈哈

程序代码:

#include <cstdio>
using namespace std;
#define LL long long
int main()
{
LL  n;
scanf("%lld",&n);
printf("%lld
",(n-2)*(n-2));
 return 0;
}
View Code
原文地址:https://www.cnblogs.com/www-cnxcy-com/p/5539825.html