前言
一道 简单 的 模拟题 思维?
思路
大概知道题意之后 我们可以发现 只需要找到比本身大的 最近的满足条件的数
之后答案 就是这个数 - 本身
- 注意一下样例可以发现 <10的数 都是1 所以特判一下
至于找这个数我们只需要统计位数 然后首位+1 再乘回去即可
(具体看代码)
CODE
(因 ll 未开 喜提一WA)
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
void solve()
{
ll n;
cin>>n;
if(n<10)
{
cout<<1<<endl;
return;
}
ll t = n;
ll h = 1;
while(t!=0)
{
t/=10;
h*=10;
}
h/=10;
ll ans = n/h+1;
ans*=h;
ans = ans - n;
cout<<ans<<endl;
}
int main()
{
ios::sync_with_stdio(false);
int t;
cin>>t;
while(t -- )
solve();
return 0;
}