トップページに戻る    次の競技プログラミングの問題へ    前の競技プログラミングの問題へ

AGC-021-A Digit Sum 2

■■■問題■■■

N以下の正の整数の10進法での各桁の和の最大値を求めてください。

■■■入力■■■

N

●1 <= N <= 10の16乗
●Nは整数である

■■■出力■■■

N以下の正の整数の10進法での各桁の和の最大値を出力せよ。


C#のソース

using System;
using System.Collections.Generic;

class Program
{
    static string InputPattern = "Input1";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("100");
            //18
            //例えば99の各桁の和は18で、これが求める最大値となります
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("9995");
            //35
            //例えば9989の各桁の和は35で、これが求める最大値となります
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("3141592653589793");
            //137
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        string N = InputList[0];

        var NumList = new List<int>();
        for (int I = 1; I <= N.Length - 1; I++) {
            NumList.Add(N[I] - '0');
        }

        int LastNum = N[0] - '0';
        if (NumList.TrueForAll(X => X == 9)) {
            Console.WriteLine(9 * NumList.Count + LastNum);
        }
        else {
            Console.WriteLine(9 * NumList.Count + LastNum - 1);
        }
    }
}


解説

下記の2通りで場合分けしてます。
●最上位桁以外の数字が全て9
●最上位桁以外の数字の少なくとも1つが9以外