結果

問題 No.167 N^M mod 10
ユーザー Vir_MeL0Vir_MeL0
提出日時 2017-03-22 23:44:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 73,808 KB
実行使用メモリ 40,152 KB
最終ジャッジ日時 2024-07-05 17:51:48
合計ジャッジ時間 4,779 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 105 ms
39,884 KB
testcase_03 AC 107 ms
39,872 KB
testcase_04 WA -
testcase_05 AC 53 ms
36,928 KB
testcase_06 WA -
testcase_07 AC 53 ms
36,604 KB
testcase_08 AC 52 ms
36,860 KB
testcase_09 AC 52 ms
36,788 KB
testcase_10 AC 52 ms
37,060 KB
testcase_11 AC 51 ms
36,548 KB
testcase_12 AC 51 ms
37,008 KB
testcase_13 AC 51 ms
36,808 KB
testcase_14 AC 52 ms
36,936 KB
testcase_15 AC 52 ms
36,616 KB
testcase_16 AC 51 ms
36,904 KB
testcase_17 AC 52 ms
37,104 KB
testcase_18 AC 53 ms
37,184 KB
testcase_19 AC 52 ms
36,864 KB
testcase_20 AC 54 ms
37,016 KB
testcase_21 AC 53 ms
37,148 KB
testcase_22 AC 103 ms
39,972 KB
testcase_23 AC 104 ms
39,932 KB
testcase_24 AC 107 ms
40,152 KB
testcase_25 AC 104 ms
40,148 KB
testcase_26 AC 79 ms
39,060 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
			System.out.println("1");
		else {
			int ans = n;
			for (int i = 1; i < m; i++)
				ans = (ans * n) % 10;
			System.out.println(ans);
		}
	}
}
0