Pasha and Stick Codeforces 610A
Description
Pasha has a wooden stick of some positive integer length n. He wants to perform exactly three cuts to get four parts of the stick. Each part must have some positive integer length and the sum of these lengths will obviously be n.
Pasha likes rectangles but hates squares, so he wonders, how many ways are there to split a stick into four parts so that it's possible to form a rectangle using these parts, but is impossible to form a square.
Your task is to help Pasha and count the number of such ways. Two ways to cut the stick are considered distinct if there exists some integer x, such that the number of parts of length x in the first way differ from the number of parts of length x in the second way.
Input
The first line of the input contains a positive integer n (1 ≤ n ≤ 2·109) — the length of Pasha's stick.
Output
The output should contain a single integer — the number of ways to split Pasha's stick into four parts of positive integer length so that it's possible to make a rectangle by connecting the ends of these parts, but is impossible to form a square.
Sample Input
Input
6
Output
1
Input
20
Output
4
Hint
There is only one way to divide the stick in the first sample {1, 1, 2, 2}.
Pasha has a wooden stick of some positive integer length n. He wants to perform exactly three cuts to get four parts of the stick. Each part must have some positive integer length and the sum of these lengths will obviously be n.
Pasha likes rectangles but hates squares, so he wonders, how many ways are there to split a stick into four parts so that it's possible to form a rectangle using these parts, but is impossible to form a square.
Your task is to help Pasha and count the number of such ways. Two ways to cut the stick are considered distinct if there exists some integer x, such that the number of parts of length x in the first way differ from the number of parts of length x in the second way.
Input
The first line of the input contains a positive integer n (1 ≤ n ≤ 2·109) — the length of Pasha's stick.
Output
The output should contain a single integer — the number of ways to split Pasha's stick into four parts of positive integer length so that it's possible to make a rectangle by connecting the ends of these parts, but is impossible to form a square.
Sample Input
Input
6
Output
1
Input
20
Output
4
Hint
There is only one way to divide the stick in the first sample {1, 1, 2, 2}.
Four ways to divide the stick in the second sample are {1, 1, 9, 9}, {2, 2, 8, 8}, {3, 3, 7, 7} and {4, 4, 6, 6}. Note that {5, 5, 5, 5} doesn't work.
#include<stdio.h>
int main()
{
int n,i,a,sum;
while(scanf("%d",&n)!=EOF)
{
sum=0;
if(n%2!=0) printf("0\n");
else
{
for(i=1;i<=(n/4);i++)
{
a=(n-2*i)/2;
if(i!=a)
sum++;
}
printf("%d\n",sum);
}
}
return 0;
}
相關文章
- Codeforces Round #249 (Div. 2) B. Pasha Maximizes
- stick footer佈局
- win10開啟stick notes閃退怎麼辦_win10執行stick notes閃退如何解決Win10
- Linux精講——特殊許可權之stick_bitLinux
- 【故障-ORACLE】GGS_STICK出來大量鎖的問題Oracle
- Codeforces
- Coder-Strike 2014 - Finals (online edition, Div. 2) A. Pasha and Hamsters
- codeforces Mafia
- codeforces Winner
- codeforces Educational Codeforces Round 33 (Rated for Div. 2)
- 【CodeForces訓練記錄】Codeforces Global Round 27
- codeforces Educational Codeforces Round 33 (Rated for Div. 2)B
- codeforces Photo of The Sky
- Codeforces - Jzzhu and Numbers
- codeforces #442 B
- Codeforces Sereja and Array
- Codeforces Round #174
- Codeforces Round #170
- Codeforces 專區
- Codeforces Round 955
- 9.11 codeforces
- 【CodeForces訓練記錄】Codeforces Round 981 (Div. 3)
- 【CodeForces訓練記錄】Codeforces Round 982 (Div. 2)
- 【CodeForces訓練記錄】Codeforces Round 984 (Div. 3)
- SpriteKit Programming Guide手遊開發之(FAKE STICK HERO)-李珊-專題視訊課程GUIIDE
- Codeforces Global Round 13
- codeforces_B. Barnicle
- CodeForces 1307
- CodeForces - 1363B
- Educational Codeforces Round 32
- Codeforces Beta Round #32
- Codeforces Beta Round #23
- Codeforces Round #180
- CodeForces - 765F
- Codeforces Global Round 26
- Codeforces Global Round 27
- 【CodeForces訓練記錄VP】Codeforces Round 933 (Div. 3)
- 【CodeForces訓練記錄】Educational Codeforces Round 171 (Rated for Div. 2)