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


    ✍个人博客:https://blog.csdn.net/Newin2020?spm=1011.2415.3001.5343
    📚专栏地址:PAT题解集合
    📝原题地址:题目详情 - 1153 Decode Registration Card of PAT (pintia.cn)
    🔑中文翻译:解码PAT准考证
    📣专栏定位:为想考甲级PAT的小伙伴整理常考算法题解,祝大家都能取得满分!
    ❤️如果有收获的话,欢迎点赞👍收藏📁,您的支持就是我创作的最大动力💪

    1058 A+B in Hogwarts

    题目详情 - 1058 A+B in Hogwarts (pintia.cn)

    中文翻译

    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,107], 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
    
    • 1

    Sample Output:

    14.1.28
    
    • 1
    题意

    这道题是要我们去模拟进制运算,给定两个数,格式是 a.b.c ,c 的范围在 [0,29) ,b 的范围在 [0,17) ,也就是说 c 每达到 29 就会往 b 进一位即二十九进制,而 b 每达到 17 就会往 a 进一位即十七进制。

    现在就要我们通过这个进制要求去计算两个给定格式的数之和,并且输出最终结果。

    思路
    1. 将两个数分别用 a,b,c 输入进来,然后先将对应位相加。
    2. 然后处理进位情况,由于进位是从后往前进,所以我们先要计算最后一位即 c 的进位情况,将 c 进的位加到 b 上,然后再处理 b 的进位情况并加到 a 上。
    3. 最后输出结果。
    代码
    #include
    using namespace std;
    
    int main()
    {
        int a1, b1, c1, a2, b2, c2;
        scanf("%d.%d.%d %d.%d.%d", &a1, &b1, &c1, &a2, &b2, &c2);
    
        a1 += a2, b1 += b2, c1 += c2;
        b1 += c1 / 29, c1 %= 29;
        a1 += b1 / 17, b1 %= 17;
    
        printf("%d.%d.%d", a1, b1, c1);
    
        return 0;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
  • 相关阅读:
    移动WEB开发之rem布局--苏宁首页案例制作(技术方案1)
    无线耳机哪款佩戴舒适?佩戴最舒适的骨传导蓝牙耳机
    【rtp-benchmarks】读取本地文件基于uvgRtp实现多线程发送
    SHC加密sh脚本
    预告|易天光通信将亮相第24届CIOE光博会
    ArcGIS_空间插值分析
    spring框架源码九、spring ioc xml与注解组合模式
    外设驱动库开发笔记49:BY25Qxx存储器驱动
    【计算机视觉 | 目标检测】术语理解9:AIGC的理解,对比学习,解码器,Mask解码器,耦合蒸馏,半耦合,图像编码器和组合解码器的耦合优化
    【895. 最大频率栈】
  • 原文地址:https://blog.csdn.net/Newin2020/article/details/126731771
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | 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号