難しくはないとはいえ、問題文の難易度の方が高い。

problem

本のページ番号が与えられるので、そのページ番号を含む最小のページの集合の枚数を答える。 1あるいは2あるいはその両方が与えられていたら表がp1で裏がp2な紙が1枚。

implementation

#!/usr/bin/env python3
import random
n = int(input())
ps = set(map(int, input().split()))
result = len(ps)
for p in ps:
    if p % 2 == 1 and p + 1 in ps:
        result -= 1
print(result)