CF289A.Polo the Penguin and Segments

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Little penguin Polo adores integer segments, that is, pairs of integers [l; r][l; r] (l<=r)(l<=r) .

He has a set that consists of nn integer segments: [l1; r1],[l2; r2],...,[ln; rn][l_{1}; r_{1}],[l_{2}; r_{2}],...,[l_{n}; r_{n}] . We know that no two segments of this set intersect. In one move Polo can either widen any segment of the set 1 unit to the left or 1 unit to the right, that is transform [l; r][l; r] to either segment [l1; r][l-1; r] , or to segment [l; r+1][l; r+1] .

The value of a set of segments that consists of nn segments [l1; r1],[l2; r2],...,[ln; rn][l_{1}; r_{1}],[l_{2}; r_{2}],...,[l_{n}; r_{n}] is the number of integers xx , such that there is integer jj , for which the following inequality holds, lj<=x<=rjl_{j}<=x<=r_{j} .

Find the minimum number of moves needed to make the value of the set of Polo's segments divisible by kk .

输入格式

The first line contains two integers nn and kk ( 1<=n,k<=1051<=n,k<=10^{5} ). Each of the following nn lines contain a segment as a pair of integers lil_{i} and rir_{i} ( 105<=li<=ri<=105-10^{5}<=l_{i}<=r_{i}<=10^{5} ), separated by a space.

It is guaranteed that no two segments intersect. In other words, for any two integers i,ji,j (1<=i<j<=n) the following inequality holds, min(r_{i},r_{j})<max(l_{i},l_{j}) .

输出格式

In a single line print a single integer — the answer to the problem.

输入输出样例

  • 输入#1

    2 3
    1 2
    3 4
    

    输出#1

    2
    
  • 输入#2

    3 7
    1 2
    3 3
    4 7
    

    输出#2

    0
    
首页