博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数学 Codeforces Round #308 (Div. 2) B. Vanya and Books
阅读量:6124 次
发布时间:2019-06-21

本文共 919 字,大约阅读时间需要 3 分钟。

 

1 /* 2     水题:求总数字个数,开long long竟然莫名其妙WA了几次,也没改啥又对了:) 3 */ 4 #include 
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #include
14 using namespace std;15 16 typedef long long ll;17 const int MAXN = 1e2 + 10;18 const int INF = 0x3f3f3f3f;19 20 int main(void) //Codeforces Round #308 (Div. 2) B. Vanya and Books21 {22 // freopen ("B.in", "r", stdin);23 24 ll n;25 while (scanf ("%I64d", &n) == 1)26 {27 int len = 0; ll tmp = n;28 while (tmp)29 {30 tmp /= 10; len++;31 }32 33 ll ans = 0; ll x = 9;34 for (int i=1; i<=len-1; ++i)35 {36 ans += x * i; x *= 10;37 }38 ll y = 1;39 for (int i=1; i<=len-1; ++i) y *= 10;40 41 ans += (n - y + 1) * len;42 printf ("%I64d\n", ans);43 }44 45 46 return 0;47 }

 

转载于:https://www.cnblogs.com/Running-Time/p/4588200.html

你可能感兴趣的文章
IOS开发实现录音功能
查看>>
thinkphp更新数据库的时候where('')为字符串
查看>>
python2用pip进行安装时报错Fatal error in launcher: Unable to create process using '"'
查看>>
分布式数据库数据从属与client与server的数据同步
查看>>
K8s快速入门
查看>>
.NET连接SAP系统专题:C#调用BAPI给账户赋予权限(八)
查看>>
24、printf跨平台,数据类型与输出类型要匹配
查看>>
浅谈ASP.NET核心对象【转】
查看>>
HDU 1728 逃离迷宫
查看>>
jQuery设计思想
查看>>
64位Ubuntu提示(...adb": error=2, 没有那个文件或目录)
查看>>
分享一个简单的 VS 插件及源码
查看>>
(转)Windows的任务调度机制
查看>>
CodeSite日志使用
查看>>
PHP实现一个简单url路由功能
查看>>
超棒的仪表盘javascript类库 - justGage
查看>>
堆实例
查看>>
WinForm 单例模式实例
查看>>
怎样理解NoSQL的一致性等
查看>>
android启动优化
查看>>