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

A05 Three Cards


問題へのリンク


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("3 6");
            //7
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("3000 4000");
            //6498498
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int[] wkArr = InputList[0].Split(' ').Select(pX => int.Parse(pX)).ToArray();
        int N = wkArr[0];
        int K = wkArr[1];

        int Answer = 0;
        for (int I = 1; I <= N; I++) {
            for (int J = 1; J <= N; J++) {
                int Rest = K - I - J;
                if (1 <= Rest && Rest <= N) {
                    Answer++;
                }
            }
        }
        Console.WriteLine(Answer);
    }
}


解説

2重ループにして、計算量を減らしてます。