結果

問題 No.167 N^M mod 10
ユーザー htensaihtensai
提出日時 2019-12-18 08:29:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 1,471 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 76,312 KB
実行使用メモリ 37,048 KB
最終ジャッジ日時 2024-07-05 19:19:03
合計ジャッジ時間 4,651 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,880 KB
testcase_01 AC 50 ms
36,744 KB
testcase_02 AC 56 ms
36,512 KB
testcase_03 AC 53 ms
36,788 KB
testcase_04 AC 51 ms
36,640 KB
testcase_05 AC 50 ms
36,304 KB
testcase_06 AC 50 ms
36,736 KB
testcase_07 AC 49 ms
36,904 KB
testcase_08 AC 50 ms
36,412 KB
testcase_09 AC 49 ms
36,740 KB
testcase_10 AC 49 ms
37,048 KB
testcase_11 AC 50 ms
36,656 KB
testcase_12 AC 50 ms
36,808 KB
testcase_13 AC 50 ms
36,864 KB
testcase_14 AC 49 ms
36,648 KB
testcase_15 AC 49 ms
36,704 KB
testcase_16 AC 49 ms
36,756 KB
testcase_17 AC 49 ms
36,884 KB
testcase_18 AC 50 ms
36,912 KB
testcase_19 AC 48 ms
36,908 KB
testcase_20 AC 49 ms
36,880 KB
testcase_21 AC 50 ms
36,572 KB
testcase_22 AC 52 ms
36,684 KB
testcase_23 AC 53 ms
36,540 KB
testcase_24 AC 52 ms
36,576 KB
testcase_25 AC 51 ms
36,724 KB
testcase_26 AC 51 ms
36,740 KB
testcase_27 AC 53 ms
36,432 KB
testcase_28 AC 53 ms
36,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String first = br.readLine();
        int n = first.charAt(first.length() - 1) - '0';
        String second = br.readLine();
        int m;
        if (second.length() == 1) {
            m = second.charAt(0) - '0';
            if (m == 0) {
                System.out.println(1);
                return;
            }
        } else {
            m = (second.charAt(second.length() - 2) - '0') * 10 + second.charAt(second.length() - 1) - '0';
        }
        int[][] values = new int[][]{{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
                                        {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1},
                                        {2, 4, 8, 6, 2, 4, 8, 6, 2, 4, 8},
                                        {3, 9, 7, 1, 3, 9, 7, 1, 3, 9, 7},
                                        {4, 6, 4, 6, 4, 6, 4, 6, 4, 6, 4},
                                        {5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5},
                                        {6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6},
                                        {7, 9, 3, 1, 7, 9, 3, 1, 7, 9, 3}, 
                                        {8, 4, 2, 6, 8, 4, 2, 6, 8, 4, 2},
                                        {9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9}};
        System.out.println(values[n][m % 4 + 3]);
    }
}
0