标签:main 数字 第一个 mat acm title lse null NPU
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12347299.html
不要62(54min)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2089
#include<stdio.h> #include<math.h> #include<stdlib.h> #include<string.h> int arr[1000001]; void Find() { int i; for(i=1;i<=1000000;i++) { char c[10]; itoa(i,c,10); if(strstr(c,"4")==NULL&&strstr(c,"62")==NULL) arr[i]=1; else arr[i]=0; } } int main() { int n; int m; Find(); while (~scanf("%d %d",&n,&m)&&(m||n)) { int i; int sum=0; for(i=n;i<=m;i++) { sum=sum+arr[i]; } printf("%d\n",sum); } return 0; }
标签:main 数字 第一个 mat acm title lse null NPU
原文地址:https://www.cnblogs.com/ping2yingshi/p/12347299.html