Grouping 2

View as PDF

Submit solution

Points: 0.10
Time limit: 2.0s
Memory limit: 256M

Author:
Problem type
Problem Statement

There are N students in a school.

We will divide these students into some groups, and in each group they will discuss some themes.

You think that groups consisting of two or less students cannot have an effective discussion, so you want to have as many groups consisting of three or more students as possible.

Divide the students so that the number of groups consisting of three or more students is maximized.

Constraints
  • 1N1000
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

N

Output

If you can form at most x groups consisting of three or more students, print x .


Sample Input 1
Copy
8
Sample Output 1
Copy
2

For example, you can form a group of three students and another of five students.


Sample Input 2
Copy
2
Sample Output 2
Copy
0

Sometimes you cannot form any group consisting of three or more students, regardless of how you divide the students.


Sample Input 3
Copy
9
Sample Output 3
Copy
3

Comments

Please read the guidelines before commenting.


There are no comments at the moment.