結果

問題 No.16 累乗の加算
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 21:30:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 1,991 bytes
コンパイル時間 1,029 ms
コンパイル使用メモリ 113,484 KB
実行使用メモリ 27,432 KB
最終ジャッジ日時 2024-10-10 21:30:57
合計ジャッジ時間 2,074 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
27,296 KB
testcase_01 AC 29 ms
25,372 KB
testcase_02 AC 29 ms
25,376 KB
testcase_03 AC 30 ms
25,132 KB
testcase_04 AC 29 ms
25,256 KB
testcase_05 AC 29 ms
25,392 KB
testcase_06 AC 31 ms
25,392 KB
testcase_07 AC 28 ms
25,136 KB
testcase_08 AC 29 ms
25,364 KB
testcase_09 AC 30 ms
25,004 KB
testcase_10 AC 28 ms
25,388 KB
testcase_11 AC 28 ms
25,132 KB
testcase_12 AC 29 ms
27,432 KB
testcase_13 AC 29 ms
25,260 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;
using System.Linq;

class Program
{
    static string InputPattern = "InputX";

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

        if (InputPattern == "Input1") {
            WillReturn.Add("2 3");
            WillReturn.Add("1 2 3");
            //14
            //x + xの2乗 + xの3乗 , x=2 を表しております。この計算値はこのようになります。
            //x + xの2乗 + xの3乗 = 2 + 4 + 8 = 14
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("2 2");
            WillReturn.Add("0 100");
            //253110
            //xの0乗 + xの100乗 = 1 + 1267650600228229401496703205376
            //となるが、1000003で割った余りは、253110となる。
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int X = InputList[0].Split(' ').Select(A => int.Parse(A)).First();
        int[] AArr = InputList[1].Split(' ').Select(A => int.Parse(A)).ToArray();

        long Answer = 0;
        foreach (int EachInt in AArr) {
            Answer = (Answer + DeriveBekijyou(X, EachInt)) % 1000003;
        }
        Console.WriteLine(Answer);
    }

    //繰り返し2乗法で、XのN乗を求める
    static long DeriveBekijyou(int pX, int pN)
    {
        long CurrJyousuu = pX % 1000003;
        long CurrShisuu = 1;
        long WillReturn = 1;

        while (true) {
            //対象ビットが立っている場合
            if ((pN & CurrShisuu) > 0) {
                WillReturn = (WillReturn * CurrJyousuu) % 1000003;
            }

            CurrShisuu *= 2;
            if (CurrShisuu > pN) return WillReturn;
            CurrJyousuu = (CurrJyousuu * CurrJyousuu) % 1000003;
        }
    }
}
0