• 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. }

  • 相关阅读:
    iOS-iOS在h5中判断手机是否装了app
    APM/PX4/betaflight/inav开源飞控之IMU方向
    UVM 事务级建模TLM 单向/多向通信 端口 FIFO通信
    UniApp集成微信小程序原生分包
    大模型RLHF算法更新换代,DeepMind提出自训练离线强化学习框架ReST
    cad怎么转换成pdf格式?cad转pdf的方法有哪些?
    Android检测其他应用是否安装
    第4章 SpringBoot与Web应用
    GnosisSafe.sol 学习 (一)
    软件设计模式系列之九——桥接模式
  • 原文地址:https://blog.csdn.net/qq_62343171/article/details/126063558