码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 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. }

  • 相关阅读:
    基于Matlab实现全局优化算法
    2023常见自动化测试工具集合
    qt实现打开pdf(阅读器)功能用什么库比较合适
    【Elasticsearch教程5】Mapping 动态模板 Dynamic templates
    SolidworksSimulation完成对压力容器的强度分析
    Kotlin协程Flow浅析
    CH341应用升级为CH347软硬件注意事项
    企业舆情监测的意义是什么?为什么要做舆情监测?
    混合Rollup:探秘 Metis、Fraxchain、Aztec、Miden和Ola
    【.Net实用方法总结】 整理并总结System.IO中FileInfo类及其方法介绍
  • 原文地址:https://blog.csdn.net/qq_62343171/article/details/126063558
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号