101612: [AtCoder]ABC161 C - Replacing Integer

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $300$ points

Problem Statement

Given any integer $x$, Aoki can do the operation below.

Operation: Replace $x$ with the absolute difference of $x$ and $K$.

You are given the initial value of an integer $N$. Find the minimum possible value taken by $N$ after Aoki does the operation zero or more times.

Constraints

  • $0 ≤ N ≤ 10^{18}$
  • $1 ≤ K ≤ 10^{18}$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

$N$ $K$

Output

Print the minimum possible value taken by $N$ after Aoki does the operation zero or more times.


Sample Input 1

7 4

Sample Output 1

1

Initially, $N=7$.

After one operation, $N$ becomes $|7-4| = 3$.

After two operations, $N$ becomes $|3-4| = 1$, which is the minimum value taken by $N$.


Sample Input 2

2 6

Sample Output 2

2

$N=2$ after zero operations is the minimum.


Sample Input 3

1000000000000000000 1

Sample Output 3

0

Input

题意翻译

给定正整数 $n,k$,你可以进行任意多次操作,每次把 $n$ 变为 $n-k$ 的绝对值,问你能得到的最小的 $n$。 $1\le n,k\le 10^{18}$

加入题单

算法标签: