标签:tle 因此 运算 http ble tar inpu com get
1 \(\le n,m \le 10^{12}\) , 1 \(\le a,b \le 100\)
由此可得, \(a , b\) 皆为正整数。
因此,加减运算同时存在的方案所需的代价一定不是最小的。
花费分别为
\((m-n\) % \(m)\) * \(a\) 或 \((n\) % \(m)\) * \(b\)
Python 自带高精度,不需要考虑数据范围。
import math
s = input().split()
for i in range(4):
s[i] = int(s[i])
print(min((s[1]-s[0]%s[1])*s[2],(s[0]%s[1])*s[3]))
标签:tle 因此 运算 http ble tar inpu com get
原文地址:https://www.cnblogs.com/uyisnil/p/14724296.html