結果

問題 No.167 N^M mod 10
ユーザー Vir_MeL0Vir_MeL0
提出日時 2017-03-22 23:46:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 745 bytes
コンパイル時間 1,860 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 52,044 KB
最終ジャッジ日時 2024-07-05 17:51:55
合計ジャッジ時間 4,220 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
50,084 KB
testcase_01 AC 46 ms
50,072 KB
testcase_02 AC 96 ms
51,824 KB
testcase_03 AC 94 ms
51,928 KB
testcase_04 AC 94 ms
51,728 KB
testcase_05 AC 47 ms
50,132 KB
testcase_06 AC 47 ms
50,448 KB
testcase_07 AC 45 ms
50,068 KB
testcase_08 AC 46 ms
49,924 KB
testcase_09 AC 44 ms
50,280 KB
testcase_10 AC 44 ms
50,252 KB
testcase_11 AC 46 ms
50,360 KB
testcase_12 AC 46 ms
49,944 KB
testcase_13 AC 47 ms
49,840 KB
testcase_14 AC 46 ms
50,112 KB
testcase_15 AC 47 ms
50,244 KB
testcase_16 AC 52 ms
50,112 KB
testcase_17 AC 51 ms
50,436 KB
testcase_18 AC 50 ms
50,096 KB
testcase_19 AC 48 ms
50,248 KB
testcase_20 AC 47 ms
50,308 KB
testcase_21 AC 46 ms
50,232 KB
testcase_22 AC 94 ms
51,860 KB
testcase_23 AC 96 ms
51,368 KB
testcase_24 AC 95 ms
51,992 KB
testcase_25 AC 95 ms
51,624 KB
testcase_26 AC 73 ms
51,840 KB
testcase_27 WA -
testcase_28 AC 89 ms
51,624 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&&M.length==1)
			System.out.println("1");
		else {
			int ans = n;
			for (int i = 1; i < m; i++)
				ans = (ans * n) % 10;
			System.out.println(ans);
		}
	}
}
0