結果

問題 No.167 N^M mod 10
ユーザー tentententen
提出日時 2020-10-08 10:40:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 2,410 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 54,020 KB
最終ジャッジ日時 2024-07-20 05:52:29
合計ジャッジ時間 8,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
43,116 KB
testcase_01 AC 150 ms
52,416 KB
testcase_02 AC 175 ms
50,200 KB
testcase_03 AC 177 ms
50,072 KB
testcase_04 AC 177 ms
50,204 KB
testcase_05 AC 143 ms
50,164 KB
testcase_06 AC 140 ms
40,920 KB
testcase_07 AC 143 ms
40,956 KB
testcase_08 AC 141 ms
40,956 KB
testcase_09 AC 142 ms
41,192 KB
testcase_10 AC 144 ms
40,872 KB
testcase_11 AC 165 ms
54,020 KB
testcase_12 AC 143 ms
41,108 KB
testcase_13 AC 146 ms
41,056 KB
testcase_14 AC 143 ms
41,020 KB
testcase_15 AC 150 ms
41,136 KB
testcase_16 AC 140 ms
41,004 KB
testcase_17 AC 144 ms
41,172 KB
testcase_18 AC 146 ms
41,356 KB
testcase_19 AC 143 ms
41,000 KB
testcase_20 AC 146 ms
41,156 KB
testcase_21 AC 143 ms
41,056 KB
testcase_22 AC 176 ms
41,392 KB
testcase_23 AC 171 ms
41,304 KB
testcase_24 AC 183 ms
41,392 KB
testcase_25 AC 186 ms
41,228 KB
testcase_26 AC 164 ms
41,640 KB
testcase_27 WA -
testcase_28 AC 182 ms
41,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] narr = sc.next().toCharArray();
		int n = narr[narr.length - 1] - '0';
		char[] marr = sc.next().toCharArray();
		if (marr.length == 1 && marr[0] == '0') {
		    System.out.println(1);
		    return;
		}
		int m = 0;
		for (int i = Math.max(0, marr.length - 3); i < marr.length; i++) {
		    m *= 10;
		    m += marr[i] - '0';
		}
		int ans = n;
		for (int i = 1; i < m;  i++) {
		    ans *= n;
		    ans %= 10;
		}
		System.out.println(ans);
	}
}
0