結果

問題 No.167 N^M mod 10
ユーザー Vir_MeL0Vir_MeL0
提出日時 2017-03-22 23:54:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 1,000 ms
コード長 779 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 73,568 KB
実行使用メモリ 40,032 KB
最終ジャッジ日時 2024-09-22 01:41:10
合計ジャッジ時間 5,305 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,684 KB
testcase_01 AC 56 ms
36,532 KB
testcase_02 AC 114 ms
39,820 KB
testcase_03 AC 112 ms
39,664 KB
testcase_04 AC 112 ms
39,648 KB
testcase_05 AC 54 ms
36,904 KB
testcase_06 AC 56 ms
36,408 KB
testcase_07 AC 56 ms
36,948 KB
testcase_08 AC 54 ms
36,796 KB
testcase_09 AC 53 ms
36,736 KB
testcase_10 AC 54 ms
36,676 KB
testcase_11 AC 53 ms
36,528 KB
testcase_12 AC 53 ms
36,852 KB
testcase_13 AC 54 ms
37,020 KB
testcase_14 AC 55 ms
36,944 KB
testcase_15 AC 54 ms
36,792 KB
testcase_16 AC 54 ms
36,796 KB
testcase_17 AC 54 ms
37,104 KB
testcase_18 AC 56 ms
36,752 KB
testcase_19 AC 55 ms
36,756 KB
testcase_20 AC 54 ms
36,888 KB
testcase_21 AC 56 ms
37,076 KB
testcase_22 AC 113 ms
40,032 KB
testcase_23 AC 113 ms
39,764 KB
testcase_24 AC 114 ms
39,972 KB
testcase_25 AC 112 ms
39,872 KB
testcase_26 AC 94 ms
38,892 KB
testcase_27 AC 106 ms
39,928 KB
testcase_28 AC 113 ms
39,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String args[]) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String str = br.readLine();
		String[] N = str.split("");
		int n = Integer.parseInt(N[N.length - 1]);
		str = br.readLine();
		String[] M = str.split("");
		int m = 0;
		if (M.length == 1)
			m = Integer.parseInt(M[0]);
		else {
			m = Integer.parseInt(M[M.length - 2]) * 10
					+ Integer.parseInt(M[M.length - 1]);
		}
		if (m == 0) {
			if (M.length == 1)
				System.out.println("1");
			else
				System.out.println((int) Math.pow(n, 4) % 10);
		} else {
			System.out.println((int) Math.pow(n, m % 4 + 4) % 10);
		}
	}
}
0