CF127B.Canvas Frames

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Nicholas, a painter is going to paint several new canvases. Nicholas is sure that the canvases will turn out so great that each one will need framing and being hung on the wall. Frames are what Nicholas decided to begin with.

Nicholas has nn sticks whose lengths equal a1,a2,... ana_{1},a_{2},...\ a_{n} . Nicholas does not want to break the sticks or glue them together. To make a h×wh×w -sized frame, he needs two sticks whose lengths equal hh and two sticks whose lengths equal ww . Specifically, to make a square frame (when h=wh=w ), he needs four sticks of the same length.

Now Nicholas wants to make from the sticks that he has as many frames as possible; to be able to paint as many canvases as possible to fill the frames. Help him in this uneasy task. Note that it is not necessary to use all the sticks Nicholas has.

输入格式

The first line contains an integer nn ( 1<=n<=1001<=n<=100 ) — the number of sticks. The second line contains nn space-separated integers. The ii -th integer equals the length of the ii -th stick aia_{i} ( 1<=ai<=1001<=a_{i}<=100 ).

输出格式

Print the single number — the maximum number of frames Nicholas can make for his future canvases.

输入输出样例

  • 输入#1

    5
    2 4 3 2 3
    

    输出#1

    1
  • 输入#2

    13
    2 2 4 4 4 4 6 6 6 7 7 9 9
    

    输出#2

    3
  • 输入#3

    4
    3 3 3 5
    

    输出#3

    0
首页