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

CF997B Roman Digits

时间:2018-09-09 15:23:02      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:csdn   strong   man   bit   its   实现   https   details   +=   

思路:

不是很好想的数学题。

参考了https://blog.csdn.net/litble/article/details/80924306

实现:

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 int main()
 4 {
 5     int n;
 6     while (cin >> n)
 7     {
 8         long long ans = 0;
 9         for (int i = 0; i <= 8 && i <= n; i++)
10         {
11             for (int j = 0; j <= (i == 0 ? 8 : 4) && i + j <= n; j++)
12             {
13                 ans += n + 1 - i - j;
14             }
15         }
16         cout << ans << endl;
17     }
18     return 0;
19 }

 

CF997B Roman Digits

标签:csdn   strong   man   bit   its   实现   https   details   +=   

原文地址:https://www.cnblogs.com/wangyiming/p/9613167.html

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