zoukankan      html  css  js  c++  java
  • HDU 1047 Integer Inquiry


     

                   Integer Inquiry



     

    Problem Description
    One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of powers of 3 to go from 0 to 333 and he explored taking various sums of those numbers.
    ``This supercomputer is great,'' remarked Chip. ``I only wish Timothy were here to see these results.'' (Chip moved to a new apartment, once one became available on the third floor of the Lemon Sky apartments on Third Street.)
     

     

    Input
    The input will consist of at most 100 lines of text, each of which contains a single VeryLongInteger. Each VeryLongInteger will be 100 or fewer characters in length, and will only contain digits (no VeryLongInteger will be negative).

    The final input line will contain a single zero on a line by itself.
     

     

    Output
    Your program should output the sum of the VeryLongIntegers given in the input.


    This problem contains multiple test cases!

    The first line of a multiple input is an integer N, then a blank line followed by N input blocks. Each input block is in the format indicated in the problem description. There is a blank line between input blocks.

    The output format consists of N output blocks. There is a blank line between output blocks.
     

     

    Sample Input
    1
    123456789012345678901234567890
    123456789012345678901234567890
    123456789012345678901234567890
    0
     

     

    Sample Output
    370370367037037036703703703670
     
    简单的大数累加.
     
    代码:
     1 #include<cstdio>
     2 #include<cstring>
     3 using namespace std;
     4 
     5 int main()
     6 {
     7     //freopen("in.txt","r",stdin);
     8     char s[105];
     9     int a[1005],b[1005];
    10     int t,j,i;
    11     scanf("%d",&t);
    12     while(t--)
    13     {
    14         memset(a,0,sizeof(a));
    15         while(scanf("%s",s)&&strcmp(s,"0")!=0)
    16         {
    17             memset(b,0,sizeof(b));
    18             int len=strlen(s);
    19             for(j=0,i=len-1;i>=0;i--)
    20             b[j++]=s[i]-'0';
    21             for(i=0;i<1005;i++)
    22             {
    23                 a[i]+=b[i];
    24                 if(a[i]>=10)
    25                 {
    26                     a[i]-=10;
    27                     a[i+1]+=1;
    28                 }
    29             }
    30         }
    31         for(i=1004;i>=0;i--)
    32         if(a[i])break;
    33         if(i==-1)
    34         printf("0");
    35         for(;i>=0;i--)
    36         printf("%d",a[i]);
    37         printf("
    ");
    38         if(t!=0)
    39         printf("
    ");
    40     }
    41     return 0;
    42 }
  • 相关阅读:
    router基本使用
    函数声明 和 var声明的优先级
    适用于Windows桌面应用程序的.NET Core 3
    在.Net Core 3.0中尝试新的System.Text.Json API
    在WPF中使用.NET Core 3.0依赖项注入和服务提供程序
    WPF控件获得焦点时去除虚线框
    Call asynchronous method in constructor
    将自定义控件加载到RichTextbox并进行交互
    WPF应用无法使用Snoop分析的解决办法
    关于序列化和反序列化
  • 原文地址:https://www.cnblogs.com/homura/p/4674190.html
Copyright © 2011-2022 走看看