(cf)Decrease the Sum of Digits

编程入门 行业动态 更新时间:2024-10-22 21:17:58

(cf)<a href=https://www.elefans.com/category/jswz/34/1739387.html style=Decrease the Sum of Digits"/>

(cf)Decrease the Sum of Digits

题意:至少加几使得n的位数之和小于等于s。
题解:可以发现,当n不断加一时位数之和一般是增加的,只有增加到10的倍数位数之和才会减小,所以每次增加到离n最近的10的倍数,得出最小值。

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int f(ll n)
{int res = 0;while (n)res += n % 10, n /= 10;return res;
}
int main()
{int t, s;ll n;cin >> t;while (t--){cin >> n >> s;if (f(n) <= s) cout << 0 << endl;else{ll ans = 0, tt = 1;while (f(n) > s){if (n % 10 == 0) n /= 10, tt *= 10;else n++, ans += tt;}cout << ans << endl;}}
}

更多推荐

(cf)Decrease the Sum of Digits

本文发布于:2024-03-23 14:41:54,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1739381.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Decrease   cf   Digits   Sum

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!