結果

問題 No.167 N^M mod 10
ユーザー htensaihtensai
提出日時 2019-11-27 11:10:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 586 bytes
コンパイル時間 4,818 ms
コンパイル使用メモリ 83,956 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-11-07 22:32:47
合計ジャッジ時間 7,392 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,112 KB
testcase_01 AC 125 ms
41,292 KB
testcase_02 AC 157 ms
41,220 KB
testcase_03 AC 139 ms
41,364 KB
testcase_04 AC 157 ms
41,268 KB
testcase_05 AC 124 ms
41,100 KB
testcase_06 AC 107 ms
39,952 KB
testcase_07 AC 123 ms
40,996 KB
testcase_08 AC 108 ms
40,216 KB
testcase_09 AC 111 ms
39,988 KB
testcase_10 AC 125 ms
40,924 KB
testcase_11 AC 111 ms
40,000 KB
testcase_12 AC 124 ms
41,056 KB
testcase_13 AC 121 ms
41,152 KB
testcase_14 WA -
testcase_15 AC 125 ms
40,928 KB
testcase_16 AC 121 ms
41,180 KB
testcase_17 AC 122 ms
41,152 KB
testcase_18 AC 121 ms
41,280 KB
testcase_19 AC 121 ms
40,780 KB
testcase_20 AC 120 ms
40,904 KB
testcase_21 AC 124 ms
40,812 KB
testcase_22 AC 159 ms
41,340 KB
testcase_23 AC 157 ms
41,336 KB
testcase_24 AC 146 ms
41,068 KB
testcase_25 AC 157 ms
41,148 KB
testcase_26 WA -
testcase_27 AC 158 ms
41,128 KB
testcase_28 AC 155 ms
41,344 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 modN = nArr[nArr.length - 1] - '0';
		char[] mArr = sc.next().toCharArray();
		if (mArr.length == 0 && mArr[0] == '0') {
		    System.out.println(0);
		}
		int modM = 0;
		for (char c : mArr) {
		    modM *= 10;
		    modM += c - '0';
		    modM %= 8;
		}
		if (modM == 0) {
		    modM = 8;
		}
		long ans = 1;
		for (int i = 1; i <= modM; i++) {
		    ans *= modN;
		}
		ans %= 10;
		System.out.println(ans);
	}
}
0