3 条题解
信息
- ID
- 986
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 1
- 标签
- 递交数
- 146
- 已通过
- 55
- 上传者
简单模拟题。
最后的答案为624
#include<bits/stdc++.h>
using namespace std;
int get(int x)
{
int cnt = 0;
while(x)
{
if(x % 10 == 2) cnt++;
x /= 10;
}
return cnt;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int ans = 0;
for(int i = 1; i <= 2020; i++)
{
ans += get(i);
}
cout << ans << "\n";
return 0;
}