競技プログラミングの鉄則    次の問題へ    前の問題へ

A31 Divisors


問題へのリンク


C#のソース

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static string InputPattern = "InputX";

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

        if (InputPattern == "Input1") {
            WillReturn.Add("10");
            //5
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("30");
            //14
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("100000000000");
            //46666666667
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

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

        // 3の倍数の数
        long Cnt3 = N / 3;

        // 5の倍数の数
        long Cnt5 = N / 5;

        // 15の倍数の数
        long Cnt15 = N / 15;

        Console.WriteLine(Cnt3 + Cnt5 - Cnt15);
    }
}


解説

個数定理を使ってます。