CodeForces 610 A. Pasha and Stick(水~)

Description
问构造一个长度为n的长方形(不包括正方形)有多少种方案
Input
一个整数n(1<=n<=2*10^9)
Output
输出构造一个长度为n的长方形(不包括正方形)的方案数,长方形边长需为正整数
Sample Input
6
Sample Output
1
Solution
水题,n为奇ans=0,n为偶ans=(n/2-1)/2
Code

#include<cstdio>
#include<iostream>
using namespace std;
int n;
int main()
{
    while(~scanf("%d",&n))
        printf("%d\n",n%2?0:(n/2-1)/2);
    return 0;
}

你可能感兴趣的:(CodeForces 610 A. Pasha and Stick(水~))