{"raw_statement":[{"iden":"problem statement","content":"In AtCoder, a person who has participated in a contest receives a _color_, which corresponds to the person's rating as follows:\n\n*   Rating $1$\\-$399$ : gray\n*   Rating $400$\\-$799$ : brown\n*   Rating $800$\\-$1199$ : green\n*   Rating $1200$\\-$1599$ : cyan\n*   Rating $1600$\\-$1999$ : blue\n*   Rating $2000$\\-$2399$ : yellow\n*   Rating $2400$\\-$2799$ : orange\n*   Rating $2800$\\-$3199$ : red\n\nOther than the above, a person whose rating is $3200$ or higher can freely pick his/her color, which can be one of the eight colors above or not.  \nCurrently, there are $N$ users who have participated in a contest in AtCoder, and the $i$\\-th user has a rating of $a_i$.  \nFind the minimum and maximum possible numbers of different colors of the users."},{"iden":"constraints","content":"*   $1 ≤ N ≤ 100$\n*   $1 ≤ a_i ≤ 4800$\n*   $a_i$ is an integer."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$\n$a_1$ $a_2$ $...$ $a_N$"},{"iden":"sample input 1","content":"4\n2100 2500 2700 2700"},{"iden":"sample output 1","content":"2 2\n\nThe user with rating $2100$ is \"yellow\", and the others are \"orange\". There are two different colors."},{"iden":"sample input 2","content":"5\n1100 1900 2800 3200 3200"},{"iden":"sample output 2","content":"3 5\n\nThe user with rating $1100$ is \"green\", the user with rating $1900$ is blue and the user with rating $2800$ is \"red\".  \nIf the fourth user picks \"red\", and the fifth user picks \"blue\", there are three different colors. This is one possible scenario for the minimum number of colors.  \nIf the fourth user picks \"purple\", and the fifth user picks \"black\", there are five different colors. This is one possible scenario for the maximum number of colors."},{"iden":"sample input 3","content":"20\n800 810 820 830 840 850 860 870 880 890 900 910 920 930 940 950 960 970 980 990"},{"iden":"sample output 3","content":"1 1\n\nAll the users are \"green\", and thus there is one color."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}