CF271E.Three Horses

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are three horses living in a horse land: one gray, one white and one gray-and-white. The horses are really amusing animals, which is why they adore special cards. Each of those cards must contain two integers, the first one on top, the second one in the bottom of the card. Let's denote a card with aa on the top and bb in the bottom as (a,b)(a,b) .

Each of the three horses can paint the special cards. If you show an (a,b)(a,b) card to the gray horse, then the horse can paint a new (a+1,b+1)(a+1,b+1) card. If you show an (a,b)(a,b) card, such that aa and bb are even integers, to the white horse, then the horse can paint a new card. If you show two cards (a,b)(a,b) and (b,c)(b,c) to the gray-and-white horse, then he can paint a new (a,c)(a,c) card.

Polycarpus really wants to get nn special cards (1,a1)(1,a_{1}) , (1,a2)(1,a_{2}) , ...... , (1,an)(1,a_{n}) . For that he is going to the horse land. He can take exactly one (x,y)(x,y) card to the horse land, such that 1<=x<y<=m . How many ways are there to choose the card so that he can perform some actions in the horse land and get the required cards?

Polycarpus can get cards from the horses only as a result of the actions that are described above. Polycarpus is allowed to get additional cards besides the cards that he requires.

输入格式

The first line contains two integers n,mn,m (1<=n<=105,2<=m<=109)(1<=n<=10^{5},2<=m<=10^{9}) . The second line contains the sequence of integers a1,a2,...,ana_{1},a_{2},...,a_{n} (2<=ai<=109)(2<=a_{i}<=10^{9}) . Note, that the numbers in the sequence can coincide.

The numbers in the lines are separated by single spaces.

输出格式

Print a single integer — the answer to the problem.

Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    1 6
    2
    

    输出#1

    11
    
  • 输入#2

    1 6
    7
    

    输出#2

    14
    
  • 输入#3

    2 10
    13 7
    

    输出#3

    36
    
首页