博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
L1-033 出生年
阅读量:5041 次
发布时间:2019-06-12

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

不难,代码:

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std; /*题意: 当前年份为a,求当前和未来最近的某一年,年份各位数字的不同个数等于b */ #define N 1005 inline int f(int a) { int aa = a % 10; a /=10; int bb = a % 10; a /=10; int cc = a % 10; a /= 10; int dd = a; int ans = 1; if(aa!=bb && aa != cc && aa != dd) ans++; if(bb!=cc && bb != dd) ans++; if(cc != dd) ans++; return ans; } int main() { int a,b; scanf("%d%d",&a,&b); int cot = 0; while(1){ if(f(a) == b) break; a++; cot++; } printf("%d %04d",cot,a); return 0; }

 

转载于:https://www.cnblogs.com/nr1999/p/8604281.html

你可能感兴趣的文章
graphite custom functions
查看>>
ssh无密码登陆屌丝指南
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
[CF803C] Maximal GCD(gcd,贪心,构造)
查看>>
oracle连接的三个配置文件(转)
查看>>
Java 8 中如何优雅的处理集合
查看>>
[HNOI2012]永无乡 线段树合并
查看>>
Centos下源码安装git
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>
Extjs String转Json
查看>>
二叉树的遍历问题总结
查看>>
spring回滚数据
查看>>
新浪分享API应用的开发
查看>>
美国专利
查看>>
【JavaScript】Write和Writeln的区别
查看>>
百度编辑器图片在线流量返回url改动
查看>>
我对你的期望有点过了
查看>>
微信小程序wx:key以及wx:key=" *this"详解:
查看>>