博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多校4 1001 Olympiad
阅读量:6303 次
发布时间:2019-06-22

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

Olympiad

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)

Total Submission(s): 1118    Accepted Submission(s): 664

Problem Description
You are one of the competitors of the Olympiad in numbers. The problem of this year relates to beatiful numbers. One integer is called beautiful if and only if all of its digitals are different (i.e. 12345 is beautiful, 11 is not beautiful and 100 is not beautiful). Every time you are asked to count how many beautiful numbers there are in the interval 
[a,b] (ab). Please be fast to get the gold medal!
 

 

Input
The first line of the input is a single integer 
T (T1000), indicating the number of testcases. 
For each test case, there are two numbers a and b, as described in the statement. It is guaranteed that 1ab100000.
 

 

Output
For each testcase, print one line indicating the answer. 
 

 

Sample Input
2 1 10 1 1000
 

 

Sample Output
10 738
#include
int a[100005];int num[10];int main(){ int T, t, f, l, r; a[0] = 0; for(int i = 1; i <= 100000; i++){ for(int j = 0; j < 10; j++){ num[j] = 0; } f = 0; t = i; while(t != 0){ if(num[t % 10] == 1){ f = 1; break; } else{ num[t % 10] = 1; } t = t / 10; } if(f == 0){ a[i] = a[i-1] + 1; } else{ a[i] = a[i-1]; } } scanf("%d", &T); while(T--){ scanf("%d%d", &l, &r); printf("%d\n", a[r] - a[l-1]); }}
View Code

 

转载于:https://www.cnblogs.com/cyd308/p/4771360.html

你可能感兴趣的文章
我们用5分钟写了一个跨多端项目
查看>>
Visual Studio 15.4发布,新增多平台支持
查看>>
有赞透明多级缓存解决方案(TMC)设计思路
查看>>
如何设计高扩展的在线网页制作平台
查看>>
Git 2.5增加了工作树、改进了三角工作流、性能等诸多方面
查看>>
Swift 5将强制执行内存独占访问
查看>>
中台之上(二):为什么业务架构存在20多年,技术人员还觉得它有点虚?
查看>>
深度揭秘腾讯云低功耗广域物联网LPWAN 技术及应用
查看>>
与Jeff Sutherland谈敏捷领导力
查看>>
More than React(四)HTML也可以静态编译?
查看>>
React Native最佳学习模版- F8 App开源了
查看>>
云服务正在吞噬世界!
查看>>
阅读Android源码的一些姿势
查看>>
Web语义化标准解读
查看>>
一份代码构建移动、桌面、Web全平台应用
查看>>
高性能 Lua 技巧(译)
查看>>
区分指针、变量名、指针所指向的内存
查看>>
异步编程的世界
查看>>
最近话题火爆的四件事你知道不?
查看>>
SpringBoot整合MyBatis
查看>>