시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB90715981.944%

문제

Finn loves Fours and Fives. In fact, he loves them so much that he wants to know the number of ways a number can be formed by using a sum of fours and fives, where the order of the fours and fives does not matter. If Finn wants to form the number 14, there is one way to do this which is 14 = 4 + 5 + 5. As another example, if Finn wants to form the number 20, this can be done two ways, which are 20 = 4 + 4 + 4 + 4 + 4 and 20 = 5 + 5 + 5 + 5. As a final example, Finn can form the number 40 in three ways: 40 = 4+4+4+4+4+4+4+4+4+4, 40 = 4 + 4 + 4 + 4 + 4 + 5 + 5 + 5 + 5, and 40 = 5 + 5 + 5 + 5 + 5 + 5 + 5 + 5.

Your task is to help Finn determine the number of ways that a number can be written as a sum of fours and fives.

입력

The input consists of one line containing a number N.

출력

Output the number of unordered sums of fours and fives which form the number N. Output 0 if there are no such sums of fours and fives.

서브태스크

번호배점제한
13

1 ≤ N ≤ 10

22

1 ≤ N ≤ 100 000, N is a multiple of 4

32

1 ≤ N ≤ 100 000, N is a multiple of 5

48

1 ≤ N ≤ 1 000 000

예제 입력 1

14

예제 출력 1

1

This is one of the examples in the problem description.

예제 입력 2

40

예제 출력 2

3

This is one of the examples in the problem description.

예제 입력 3

6

예제 출력 3

0

There is no way to use a sum of fours and fives to get 6.

채점 및 기타 정보

  • 예제는 채점하지 않는다.