結果

問題 No.276 連続する整数の和(1)
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-13 00:00:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 1,000 ms
コード長 1,838 bytes
コンパイル時間 957 ms
コンパイル使用メモリ 113,368 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-10-13 00:00:32
合計ジャッジ時間 1,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
17,536 KB
testcase_01 AC 23 ms
17,536 KB
testcase_02 AC 23 ms
17,280 KB
testcase_03 AC 24 ms
17,536 KB
testcase_04 AC 23 ms
17,536 KB
testcase_05 AC 25 ms
17,280 KB
testcase_06 AC 23 ms
17,536 KB
testcase_07 AC 24 ms
17,664 KB
testcase_08 AC 24 ms
17,664 KB
testcase_09 AC 24 ms
17,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;

class Program
{
    static string InputPattern = "InputX";

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

        if (InputPattern == "Input1") {
            WillReturn.Add("3");
            //3
            //3つの連続する正整数の和が3の倍数になることは中学数学で勉強した人も多いと思います。
            //例えば 1+2+3=6 は3の倍数ですし、2+3+4=9 も3の倍数になります。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("2");
            //1
            //1+2=3、2+3=5、100+101=201等を考えると最大のXは1ですね
        }
        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]);

        //Aから連続する3つの数の和は、
        //A+A+1+A+2 = 3A+3 = 3*(A+1)
        //Aの係数と、定数の、最大公約数をユークリッドの互除法で求める

        long Keisuu = N;

        //等差数列の和の公式で1からN-1までの和を求める
        long Makkou = N - 1;
        long Teisuu = Makkou * (Makkou + 1) / 2;

        Console.WriteLine(DeriveGCD(Keisuu, Teisuu));
    }

    //ユークリッドの互除法で2数の最大公約数を求める
    static long DeriveGCD(long pVal1, long pVal2)
    {
        long WarareruKazu = pVal2;
        long WaruKazu = pVal1;

        while (true) {
            long Amari = WarareruKazu % WaruKazu;
            if (Amari == 0) return WaruKazu;
            WarareruKazu = WaruKazu;
            WaruKazu = Amari;
        }
    }
}

0