博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 3183 A Magic Lamp 贪心
阅读量:4961 次
发布时间:2019-06-12

本文共 619 字,大约阅读时间需要 2 分钟。

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;int main(){ char s[1024]; int i,j,st,n,m,ans,p,f; while(~scanf("%s%d",s,&m)) { n=strlen(s); st=0; f=0; for(i=n-m;i>0;i--) { ans=10; for(j=st;j
s[j]-'0') { ans=s[j]-'0'; p=j+1; } } if(ans!=0) f=1; if(f==0&&ans==0) ; else printf("%d",ans); st=p; } if(f==0) printf("0"); printf("\n"); } return 0;}

转载于:https://www.cnblogs.com/llguanli/p/8506222.html

你可能感兴趣的文章
PHPCMS V9{loop subcat(0,0,0,$siteid) $r}怎么解释?
查看>>
避免内存重叠memmove()性能
查看>>
【ASP.NET】从服务器端注册客户端脚本
查看>>
Infix to Postfix Expression
查看>>
SELECT LOCK IN SHARE MODE and FOR UPDATE
查看>>
Perl/Nagios – Can’t locate utils.pm in @INC
查看>>
目录导航「深入浅出ASP.NET Core系列」
查看>>
简易爬虫(爬取本地数据)
查看>>
python 进程间通信
查看>>
深拷贝 vs 浅拷贝 释放多次
查看>>
Javascript 有用参考函数
查看>>
点群的判别(三)
查看>>
GNSS 使用DFT算法 能量损耗仿真
查看>>
【转】Simulink模型架构指导
查看>>
MYSQL数据库的导出的几种方法
查看>>
SQL Server-5种常见的约束
查看>>
硬件之美
查看>>
[转载]java开发中的23种设计模式
查看>>
表格的拖拽功能
查看>>
函数的形参和实参
查看>>