• AtCoder—E - Σ[k=0..10^100]floor(X/10^k


    Time Limit: 2 sec / Memory Limit: 1024 MB

    Score : 500500 points

    Problem Statement

    Find \displaystyle \sum_{k=0}^{10^{100}} \left \lfloor \frac{X}{10^k} \right \rfloork=0∑10100​⌊10kX​⌋.

    Notes

    \lfloor A \rfloor⌊A⌋ denotes the value of AA truncated to an integer.

    Constraints

    • XX is an integer.
    • 1 \le X < 10^{500000}1≤X<10500000

    Input

    Input is given from Standard Input in the following format:

    XX
    

    Output

    Print the answer as an integer.
    Here, the answer must be precisely printed as an integer, even if it is large. It is not allowed to use exponential notation, such as 2.33e+21, or print unnecessary leading zeros, as in 0523.


    Sample Input 1 Copy

    Copy

    1225
    

    Sample Output 1 Copy

    Copy

    1360
    

    The value we seek is 1225+122+12+1+0+0+\dots+0=13601225+122+12+1+0+0+⋯+0=1360.


    Sample Input 2 Copy

    Copy

    99999
    

    Sample Output 2 Copy

    Copy

    111105
    

    Beware of carries.


    Sample Input 3 Copy

    Copy

    314159265358979323846264338327950288419716939937510
    

    Sample Output 3 Copy

    Copy

    349065850398865915384738153697722542688574377708317
    

    The values in input and output can both be enormous.

     解题思路:估计你看到下面这张图图之后就恍然大悟了。

     这里我们很容易看到两个绿圈的规律。

    Code:

    1. #pragma GCC optimize(1)
    2. #pragma GCC optimize(2)
    3. #pragma GCC optimize(3, "Ofast", "inline")
    4. #include
    5. #include
    6. #include
    7. #include
    8. using namespace std;
    9. const int N = 100010;
    10. typedef long long LL;
    11. int n, m, sum, cnt;
    12. string s, t;
    13. signed main()
    14. {
    15. ios_base::sync_with_stdio(false);
    16. cin.tie(0);
    17. cout.tie(0);
    18. cin >> s;
    19. for(int i = 0; i < s.size(); i ++ ) sum += s[i] - '0'; //绿圈求和
    20. for(int i = s.size() - 1; i >= 0; i -- )
    21. {
    22. cnt += sum; //每次循环后的绿圈求和
    23. t.push_back((cnt % 10) + '0');
    24. cnt /= 10;
    25. sum -= s[i] - '0';
    26. }
    27. if(cnt) t.push_back(cnt + '0');
    28. reverse(t.begin(), t.end());
    29. cout << t << endl;
    30. }

  • 相关阅读:
    供应化学试剂BHQ-1 氨基|BHQ-1 amine|1308657-79-5
    spring-boot-admin-starter-server监控springboot项目
    【STL】map函数
    【大数据】HDFS 的常用命令
    Rust迭代器简介
    【内网穿透】公网远程访问本地硬盘文件
    RabbitMQ高级特性
    【Linux网络编程】TCP/IP协议详解
    AutoDL使用教程:1)创建实例 2)配置环境+上传数据 3)PyCharm2021.3专业版远程连接
    VMware Ubuntu16.04 下网络连接不了 修复(unkonwn host)
  • 原文地址:https://blog.csdn.net/qq_62343171/article/details/126063558