码迷,mamicode.com
首页 > 其他好文 > 详细

51Nod 1009 数字1的数量

时间:2017-12-07 22:41:52      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:题解   cin   .net   bsp   str   ret   数字   def   namespace   

具体题解发一下大佬的分析http://blog.csdn.net/wyg1997/article/details/52169036

 1 #include <iostream>
 2 #include <algorithm>
 3 using namespace std;
 4 typedef long long LL;
 5 
 6 int main(){
 7     std::ios::sync_with_stdio(false);
 8     int n;
 9     cin >> n;
10     LL ans = 0;
11     int tn = n;
12     int mu = 1;
13     while (tn)
14     {
15         int t = tn % 10;
16         if (t == 0)
17             ans += (n / (mu * 10))*mu;
18         else if (t == 1)
19         {
20             ans += (n / (mu * 10))*mu;
21             ans += (n%mu) + 1;
22         }
23         else
24             ans += (n / (mu * 10) + 1)*mu;
25         tn /= 10;
26         mu *= 10;
27     }
28     cout << ans << endl;
29     return 0;
30 }

 

51Nod 1009 数字1的数量

标签:题解   cin   .net   bsp   str   ret   数字   def   namespace   

原文地址:http://www.cnblogs.com/jaydenouyang/p/8001170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!