C++ 代码
class Solution {
public:
int clumsy(int N) {
int tot=0;
int flag=1;
while(N>0){
if(N-1>0&&N-2>0) tot+=flag*(N*(N-1)/(N-2));
else if(N-1==0) tot+=flag*N;
else if(N-2==0) tot+=flag*N*(N-1);
if(N-3>0) tot+=N-3;
N-=4;
flag=-1;
}
return tot;
}
};