4 条题解
-
1
-
0
#include<bits/stdc++.h> using namespace std; int main() { int n, s = 0; //s用作记录总共参加测试的次数 cin >> n; //遍历1 ~ n号同学 for(int i = 1; i <= n; i++){ int num = 0, t = i;//num记录i号同学参加测试的次数 //循环记录出i中有几个1 while(t > 0){ if(t % 10 == 1){ num++; } t /= 10; } //添加到总次数中 s += num; } cout << s << endl; return 0; }
- 1
信息
- ID
- 445
- 时间
- 1000ms
- 内存
- 32MiB
- 难度
- 1
- 标签
- 递交数
- 95
- 已通过
- 67
- 上传者