atcoder#CODEFESTIVAL2016FINALD. Pair Cards
Pair Cards
Score : points
Problem Statement
Takahashi is playing with cards.
The -th card has an integer on it.
Takahashi is trying to create as many pairs of cards as possible satisfying one of the following conditions:
- The integers on the two cards are the same.
- The sum of the integers on the two cards is a multiple of .
Find the maximum number of pairs that can be created.
Note that a card cannot be used in more than one pair.
Constraints
Input
The input is given from Standard Input in the following format:
Output
Print the maximum number of pairs that can be created.
7 5
3 1 4 1 5 9 2
3
Three pairs and can be created.
It is possible to create pairs and , but the number of pairs is not maximized with this.
15 10
1 5 6 10 11 11 11 20 21 25 25 26 99 99 99
6