AcWing 1245. 特别数的和 第十届蓝桥杯省赛C++ B组
原题链接
简单
作者:
coquetish
,
2024-12-22 14:00:45
,
所有人可见
,
阅读 9
模拟
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long LL;
bool check(int x) {
string s = to_string(x);
return s.find('2') != string::npos || s.find('0') != string::npos || s.find('1') != string::npos || s.find('9') != string::npos;
}
int main()
{
LL ans = 0;
int n;
scanf("%d", &n);
for(int i = 1; i <= n; i++) {
if(check(i)) ans += i;
}
printf("%lld\n", ans);
return 0;
}