結果

問題 No.167 N^M mod 10
ユーザー tentententen
提出日時 2020-10-08 10:42:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 196 ms / 1,000 ms
コード長 614 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 74,952 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-07-20 05:52:38
合計ジャッジ時間 8,287 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,492 KB
testcase_01 AC 145 ms
41,248 KB
testcase_02 AC 194 ms
41,352 KB
testcase_03 AC 195 ms
41,396 KB
testcase_04 AC 190 ms
41,612 KB
testcase_05 AC 137 ms
41,000 KB
testcase_06 AC 147 ms
41,308 KB
testcase_07 AC 144 ms
41,248 KB
testcase_08 AC 141 ms
40,776 KB
testcase_09 AC 143 ms
41,140 KB
testcase_10 AC 149 ms
41,632 KB
testcase_11 AC 134 ms
41,336 KB
testcase_12 AC 152 ms
40,904 KB
testcase_13 AC 145 ms
41,248 KB
testcase_14 AC 143 ms
40,884 KB
testcase_15 AC 151 ms
41,052 KB
testcase_16 AC 144 ms
41,360 KB
testcase_17 AC 149 ms
41,120 KB
testcase_18 AC 153 ms
41,208 KB
testcase_19 AC 145 ms
41,228 KB
testcase_20 AC 151 ms
41,120 KB
testcase_21 AC 150 ms
41,484 KB
testcase_22 AC 189 ms
41,264 KB
testcase_23 AC 191 ms
41,480 KB
testcase_24 AC 194 ms
41,312 KB
testcase_25 AC 196 ms
41,380 KB
testcase_26 AC 160 ms
41,108 KB
testcase_27 AC 181 ms
41,156 KB
testcase_28 AC 182 ms
41,304 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';
		}
		if (m == 0) {
		    m = 1000;
		}
		int ans = n;
		for (int i = 1; i < m;  i++) {
		    ans *= n;
		    ans %= 10;
		}
		System.out.println(ans);
	}
}
0