結果

問題 No.167 N^M mod 10
ユーザー tentententen
提出日時 2020-10-08 10:32:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 487 bytes
コンパイル時間 2,477 ms
コンパイル使用メモリ 79,060 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-07-20 05:52:18
合計ジャッジ時間 7,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,644 KB
testcase_01 AC 110 ms
41,040 KB
testcase_02 AC 129 ms
41,180 KB
testcase_03 AC 135 ms
41,336 KB
testcase_04 AC 143 ms
41,272 KB
testcase_05 AC 100 ms
39,760 KB
testcase_06 AC 98 ms
39,632 KB
testcase_07 AC 114 ms
40,668 KB
testcase_08 AC 118 ms
40,896 KB
testcase_09 AC 117 ms
41,000 KB
testcase_10 AC 113 ms
40,896 KB
testcase_11 AC 97 ms
39,976 KB
testcase_12 AC 111 ms
41,080 KB
testcase_13 AC 119 ms
40,864 KB
testcase_14 WA -
testcase_15 AC 105 ms
40,504 KB
testcase_16 AC 113 ms
40,624 KB
testcase_17 AC 116 ms
40,864 KB
testcase_18 AC 111 ms
40,764 KB
testcase_19 AC 114 ms
40,628 KB
testcase_20 AC 102 ms
39,924 KB
testcase_21 AC 111 ms
40,768 KB
testcase_22 AC 148 ms
41,288 KB
testcase_23 AC 157 ms
41,188 KB
testcase_24 AC 133 ms
40,944 KB
testcase_25 AC 156 ms
41,364 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 150 ms
41,292 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();
		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