码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 【PAT(甲级)】1058 A+B in Hogwarts


    If you are a fan of Harry Potter, you would know the world of magic has its own currency system -- as Hagrid explained it to Harry, "Seventeen silver Sickles to a Galleon and twenty-nine Knuts to a Sickle, it's easy enough." Your job is to write a program to compute A+B where A and B are given in the standard form of Galleon.Sickle.Knut (Galleon is an integer in [0,10^{7}], Sickle is an integer in [0, 17), and Knut is an integer in [0, 29)).

    Input Specification:

    Each input file contains one test case which occupies a line with A and B in the standard form, separated by one space.

    Output Specification:

    For each test case you should output the sum of A and B in one line, with the same format as the input.

    Sample Input:

    3.2.1 10.16.27

    Sample Output:

    14.1.28

    解题思路:

    给出A和B两个的Galleon.Sickle.Knut要求我们对他们进行不同进制的相加(10^{7},17,29)。题目默认Galleon的相加不会超过要求值,所以只要全部读入再相加,进制的话就(%它对应的进制数即可)。

    代码:

    1. #include
    2. using namespace std;
    3. int main(){
    4. int G,S,K,G1,S1,K1;
    5. cin>>G;getchar();
    6. cin>>S;getchar();
    7. cin>>K;getchar();
    8. cin>>G1;getchar();
    9. cin>>S1;getchar();
    10. cin>>K1;getchar();
    11. int rG,rS,rK;
    12. rK = (K+K1)%29;
    13. rS = (S+S1+(K+K1)/29)%17;//rK对rS是否有进位只要整除就可以看出
    14. rG = (G+G1+(S+S1+(K+K1)/29)/17);
    15. cout<"."<"."<
    16. return 0;
    17. }

  • 相关阅读:
    MySQL 8.0数据库主从搭建和问题处理
    redies基本数据结构
    24东北大学计算机计划招生数据
    蒙提霍尔问题(The Monty Hall Problem)解析(含python仿真)
    ASP.NET Core 8 在 Windows 上各种部署模型的性能测试
    Ubuntu(20.04 LTS)更换镜像源
    ubuntu 22.04修改永久修改 mac 地址
    支付业务笔记
    发布使用npm包过程
    EfficientNet-V1论文阅读笔记
  • 原文地址:https://blog.csdn.net/weixin_55202895/article/details/126681535
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | 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号