若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。


  • 运维

  • 前端

  • 编程

  • 随笔

  • hust-oj

1635: Martian Addition

发表于 2017-10-06   |   分类于 HUSTOJ   |   阅读次数 1,029

题目描述

In the 22nd Century, scientists have discovered intelligent residents live on the Mars. Martians are very fond of mathematics. Every year, they would hold an Arithmetic Contest on Mars (ACM). The task of the contest is to calculate the sum of two 100-digit numbers, and the winner is the one who uses least time. This year they also invite people on Earth to join the contest. As the only delegate of Earth, you're sent to Mars to demonstrate the power of mankind. Fortunately you have taken your laptop computer with you which can help you do the job quickly. Now the remaining problem is only to write a short program to calculate the sum of 2 given numbers. However, before you begin to program, you remember that the Martians use a 20-based number system as they usually have 20 fingers.

输入

You're given several pairs of Martian numbers, each number on a line. Martian number consists of digits from 0 to 9, and lower case letters from a to j (lower case letters starting from a to present 10, 11, …, 19). The length of the given number is never greater than 100.

输出

For each pair of numbers, write the sum of the 2 numbers in a single line.

样例输入

1234567890
abcdefghij
99999jjjjj
9999900001

样例输出

bdfi02467j
iiiij00000

参考代码

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main() 
{
    char a[110],b[110],c[110];
    int s,m,n,l,i,j;
    while(scanf("%s%s",a,b)!=EOF) 
    {
        s=0;
        m=strlen(a);
        n=strlen(b);
        l=m>n?m:n;
        for (i=0,j=m-1; i<l; i++,j--) 
        {
            if(j<0)
                            c[i]='0'; else
                            c[i]=a[j];
        }
        for (i=0,j=n-1; i<l; i++,j--) 
        {
            if(j<0)
                            a[i]='0'; else
                            a[i]=b[j];
        }
        for (i=0; i<l; i++) 
        {
            if(a[i]>=97)
                            a[i]-=87; else
                            a[i]-='0';
            if(c[i]>=97)
                            c[i]-=87; else
                            c[i]-='0';
            if((c[i]+a[i]+s)%20<10)
                            b[i]=(c[i]+a[i]+s)%20+'0'; else
                            b[i]=(c[i]+a[i]+s)%20-10+'a';
            s=(c[i]+a[i]+s)/20;
        }
        for (i=l-1; i>=0; i--)
                    printf("%c",b[i]);
        printf("n");
    }
    return 0;
}

解析

暂无

hustoj

发表评论 取消回复

电子邮件地址不会被公开。 必填项已用*标注

*
*


hoxis wechat
著作权归作者所有
站点更新说明
  • 文章目录
  • 站点概览
若是凉夜已成梦

若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。

1904 日志
6 分类
12 标签
RSS
weibo github twitter facebook

友情链接

原站点 Skip Dreams孤独患者
© 2017 若是凉夜已成梦
Powered by WordPress | 已运行
Theme By NexT.Mist