結果

問題 No.167 N^M mod 10
ユーザー bluemeganebluemegane
提出日時 2020-09-10 11:02:45
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 73 ms / 1,000 ms
コード長 811 bytes
コンパイル時間 2,341 ms
コンパイル使用メモリ 107,888 KB
実行使用メモリ 30,700 KB
最終ジャッジ日時 2024-06-02 04:09:35
合計ジャッジ時間 3,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,184 KB
testcase_01 AC 30 ms
24,312 KB
testcase_02 AC 71 ms
30,572 KB
testcase_03 AC 71 ms
26,616 KB
testcase_04 AC 73 ms
30,696 KB
testcase_05 AC 30 ms
24,568 KB
testcase_06 AC 30 ms
24,312 KB
testcase_07 AC 30 ms
22,456 KB
testcase_08 AC 29 ms
24,308 KB
testcase_09 AC 30 ms
26,488 KB
testcase_10 AC 30 ms
24,436 KB
testcase_11 AC 30 ms
26,484 KB
testcase_12 AC 29 ms
26,228 KB
testcase_13 AC 29 ms
24,372 KB
testcase_14 AC 27 ms
26,220 KB
testcase_15 AC 29 ms
22,324 KB
testcase_16 AC 29 ms
26,480 KB
testcase_17 AC 28 ms
24,564 KB
testcase_18 AC 28 ms
24,368 KB
testcase_19 AC 29 ms
26,616 KB
testcase_20 AC 29 ms
24,312 KB
testcase_21 AC 30 ms
24,296 KB
testcase_22 AC 69 ms
30,564 KB
testcase_23 AC 72 ms
28,268 KB
testcase_24 AC 71 ms
30,436 KB
testcase_25 AC 72 ms
30,700 KB
testcase_26 AC 29 ms
24,372 KB
testcase_27 AC 72 ms
26,360 KB
testcase_28 AC 72 ms
30,316 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Numerics;
using System;

public class Hello
{
    static void Main()
    {
        var s = Console.ReadLine().Trim();
        var n = s[s.Length - 1] - '0';
        BigInteger m2 = BigInteger.Parse(Console.ReadLine().Trim());
        if (m2 == 0) { Console.WriteLine(1); goto exit; }
        if (n == 0) { Console.WriteLine(0); goto exit; }
        var m3 = m2 % 4;
        var m = (int)m3;
        if (m == 0) m = 3;
        else m--;
        var map = makeMap();
        Console.WriteLine(map[n,m]);
    exit:;
    }
    static int[,] makeMap()
    {
        var map = new int[10, 4];
        for (int i = 0; i < 10; i++) map[i, 0] = i;
        for (int i = 0; i < 10; i++)
            for (int j = 1; j < 4; j++)
                map[i, j] = (map[i, j - 1] * i) % 10;
        return map;
    }
}
0