添加链接描述
如果是偶数,可以上下和左右分别走n/2+1
如果是奇数,左右上下分别为n/2+1或者n/2+2 两种情况要累加
A robot is standing at the origin of the infinite two-dimensional plane. Each second the robot moves exactly 1 meter in one of the four cardinal directions: north, south, west, and east. For the first step the robot can choose any of the four directions, but then at the end of every second it has to turn 90 degrees left or right with respect to the direction it just moved in. For example, if the robot has just moved north or south, the next step it takes has to be either west or east, and vice versa.
The robot makes exactly n steps from its starting position according to the rules above. How many different points can the robot arrive to at the end? The final orientation of the robot can be ignored.
Input
The only line contains a single integer n (1≤n≤1000) — the number of steps the robot makes.
Output
Print a single integer — the number of different possible locations after exactly n steps.
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
int p=n/2;
if(n%2==0)cout<<(p+1)*(p+1);
else cout<<(p+1)*(p+2)*2;
return 0;
}
在这里插入代码片