比赛 |
EYOI与SBOI开学欢乐赛11th |
评测结果 |
TTTAATTTTT |
题目名称 |
WHZ 的数字 |
最终得分 |
20 |
用户昵称 |
ムラサメ |
运行时间 |
9.849 s |
代码语言 |
C++ |
内存使用 |
5.89 MiB |
提交时间 |
2022-10-14 22:16:10 |
显示代码纯文本
#include<bits/stdc++.h>
#define int unsigned long long
using namespace std;
bool flag;
signed main(){
freopen("whz_number.in","r",stdin);
freopen("whz_number.out","w",stdout);
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int a,b;
while(cin>>a>>b){
flag=true;
for(int i=a;i>=0;i--){
for(int j=i;j;j/=10){
if(j%10==0){
b--;
}
if(j==0){
break;
}
}
if(b==0){
cout<<i<<endl;
flag=false;
break;
}
}
if(flag==true){
cout<<0<<endl;
}
}
return 0;
}