結果

問題 No.167 N^M mod 10
ユーザー kenkooookenkoooo
提出日時 2015-03-19 23:47:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 566 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 52,792 KB
最終ジャッジ日時 2024-09-22 01:07:24
合計ジャッジ時間 6,665 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,792 KB
testcase_01 AC 118 ms
41,192 KB
testcase_02 AC 149 ms
41,516 KB
testcase_03 AC 146 ms
41,576 KB
testcase_04 AC 152 ms
41,392 KB
testcase_05 AC 115 ms
41,472 KB
testcase_06 AC 124 ms
41,256 KB
testcase_07 AC 118 ms
41,296 KB
testcase_08 AC 115 ms
41,472 KB
testcase_09 AC 123 ms
41,040 KB
testcase_10 AC 115 ms
41,060 KB
testcase_11 AC 115 ms
41,416 KB
testcase_12 AC 115 ms
41,360 KB
testcase_13 AC 119 ms
41,016 KB
testcase_14 AC 99 ms
41,196 KB
testcase_15 AC 116 ms
41,152 KB
testcase_16 AC 114 ms
40,004 KB
testcase_17 AC 107 ms
41,284 KB
testcase_18 AC 113 ms
41,264 KB
testcase_19 AC 118 ms
41,296 KB
testcase_20 AC 116 ms
41,364 KB
testcase_21 AC 118 ms
41,344 KB
testcase_22 AC 138 ms
41,548 KB
testcase_23 AC 136 ms
41,308 KB
testcase_24 AC 145 ms
41,508 KB
testcase_25 AC 146 ms
41,492 KB
testcase_26 AC 118 ms
41,156 KB
testcase_27 AC 141 ms
41,620 KB
testcase_28 AC 136 ms
41,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] N = sc.next().toCharArray();
		String mString = sc.next();
		sc.close();
		int a = Character.getNumericValue(N[N.length - 1]);
		int b = 0;
		if (mString.length() > 2) {
			b = Integer.parseInt(mString.substring(mString.length() - 2, mString.length()));
			b %= 4;
			b += 4;
		} else {
			b = Integer.parseInt(mString);
			if (b != 0) {
				b %= 4;
				b += 4;
			}
		}

		System.out.println((int) (Math.pow(a, b) % 10));

	}
}
0