結果

問題 No.167 N^M mod 10
ユーザー bluemeganebluemegane
提出日時 2020-09-10 10:59:59
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 811 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 111,424 KB
実行使用メモリ 30,716 KB
最終ジャッジ日時 2024-06-02 04:06:29
合計ジャッジ時間 4,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
23,544 KB
testcase_01 AC 25 ms
24,572 KB
testcase_02 AC 72 ms
30,716 KB
testcase_03 AC 72 ms
30,444 KB
testcase_04 AC 71 ms
28,784 KB
testcase_05 AC 27 ms
26,352 KB
testcase_06 AC 25 ms
22,064 KB
testcase_07 AC 25 ms
24,312 KB
testcase_08 AC 26 ms
24,696 KB
testcase_09 AC 27 ms
24,564 KB
testcase_10 AC 26 ms
24,496 KB
testcase_11 AC 26 ms
24,436 KB
testcase_12 AC 25 ms
24,564 KB
testcase_13 AC 26 ms
22,324 KB
testcase_14 WA -
testcase_15 AC 25 ms
24,568 KB
testcase_16 AC 25 ms
24,428 KB
testcase_17 AC 25 ms
24,492 KB
testcase_18 AC 25 ms
24,444 KB
testcase_19 AC 25 ms
26,608 KB
testcase_20 AC 24 ms
24,312 KB
testcase_21 AC 26 ms
26,620 KB
testcase_22 AC 71 ms
30,572 KB
testcase_23 AC 70 ms
28,524 KB
testcase_24 AC 71 ms
30,444 KB
testcase_25 AC 74 ms
28,656 KB
testcase_26 AC 26 ms
24,364 KB
testcase_27 AC 73 ms
28,656 KB
testcase_28 AC 20 ms
23,820 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';
        if (n == 0) { Console.WriteLine(0); goto exit; }
        BigInteger m2 = BigInteger.Parse(Console.ReadLine().Trim());
        if (m2 == 0) { Console.WriteLine(1); 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