zoukankan      html  css  js  c++  java
  • 紫书第三章训练 UVA 1583 Digit Generator by 16 BobHuang

    For a positive integer N , the digit-sum of N is defined as the sum of N itself and its digits. When M is the digitsum ofN , we call N a generator of M .

    For example, the digit-sum of 245 is 256 (= 245 + 2 + 4 + 5). Therefore, 245 is a generator of 256.

    Not surprisingly, some numbers do not have any generators and some numbers have more than one generator. For example, the generators of 216 are 198 and 207.

    You are to write a program to find the smallest generator of the given integer.

    Input 

    Your program is to read from standard input. The input consists of T test cases. The number of test cases T is given in the first line of the input. Each test case takes one line containing an integer N , 1N100, 000 .

    Output 

    Your program is to write to standard output. Print exactly one line for each test case. The line is to contain a generator of N for each test case. If N has multiple generators, print the smallest. If N does not have any generators, print 0.

    The following shows sample input and output for three test cases.

    Sample Input 

    3 
    216 
    121 
    2005

    Sample Output 

    198 
    0 
    1979
    这道题题意也很简单啦,就是找一个比n小的数,这个数和它的每一位相加的和等于n,不就是暴力穷举么,不过从哪一位开始需要考虑下,一个数字最大9,它的每一位都是9
    的话,也就是9*n的位数,这个就是你穷举的开始,然后直接暴力一下就好的。
     1 #include<stdio.h>
     2 int main()
     3 {   int t;
     4     scanf ("%d", &t);
     5     while (t--)
     6     {   int n;
     7         scanf ("%d", &n);
     8         int ans = 0;
     9         int a=n,w=0;
    10         while(a){
    11             w++;
    12             a/=10;
    13         }
    14         for (int i = n-w*9; i < n; i++)
    15         {
    16             int a =i, b = i;
    17             while (b)
    18             {
    19                 a += b % 10;
    20                 b /= 10;
    21             }
    22             if (a == n)
    23             {
    24                 ans = i;
    25                 break;
    26             }
    27         }
    28         printf ("%d
    ", ans);
    29     }
    30     return 0;
    31 }
  • 相关阅读:
    python常见异常
    python+selenium动态抓取网页数据
    python基于scrapy配置日志
    Python依赖
    nginx配置详解
    Centos 用户登录失败N次后锁定用户禁止登陆
    CENTOS 7 firewalld详解,添加删除策略
    Centos7搭建Zookeeper 3.4.14集群
    Centos7安装FastDFS整合nginx
    VMware VCSA 6.7配置vSAN存储
  • 原文地址:https://www.cnblogs.com/tzcacm/p/6801456.html
Copyright © 2011-2022 走看看