3663.Polo the Penguin and Segments

Time Limit: 1s Memory Limit: 256MB

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

He has a set that consists of n integer segments: [l1;r1],[l2;r2],...,[ln;rn]. 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] to either segment [l-1;r], or to segment [l;r+1].

The value of a set of segments that consists of n segments [l1;r1],[l2;r2],...,[ln;rn] is the number of integers x, such that there is integer j, for which the following inequality holds, lj \le x \le rj.

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

Input Format(From the terminal/stdin)

The first line contains two integers n and k (1 \le n,k \le 105). Each of the following n lines contain a segment as a pair of integers li and ri (-105 \le li \le ri \le 105), separated by a space.

It is guaranteed that no two segments intersect. In other words, for any two integers i,j (1 \le i \lt j \le n) the following inequality holds, min(ri,rj) \lt max(li,lj).

Output Format(To the terminal/stdout)

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

Sample Input 1

Copy
2 3
1 2
3 4
 · \n
 · \n
 · \n

Sample Output 1

Copy
2
 \n

Sample Input 2

Copy
3 7
1 2
3 3
4 7
 · \n
 · \n
 · \n
 · \n

Sample Output 2

Copy
0
 \n

Submit

请先 登录

© 2025 FAQs