結果

問題 No.167 N^M mod 10
ユーザー kenkooookenkoooo
提出日時 2015-03-19 23:44:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 1,958 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-06-28 23:23:29
合計ジャッジ時間 5,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
54,000 KB
testcase_01 AC 98 ms
52,936 KB
testcase_02 AC 135 ms
54,172 KB
testcase_03 AC 134 ms
54,236 KB
testcase_04 AC 135 ms
54,244 KB
testcase_05 AC 111 ms
53,068 KB
testcase_06 AC 111 ms
54,284 KB
testcase_07 AC 109 ms
53,800 KB
testcase_08 AC 115 ms
53,956 KB
testcase_09 WA -
testcase_10 AC 109 ms
52,976 KB
testcase_11 AC 106 ms
53,964 KB
testcase_12 AC 107 ms
53,928 KB
testcase_13 AC 115 ms
53,960 KB
testcase_14 AC 95 ms
52,816 KB
testcase_15 AC 108 ms
53,948 KB
testcase_16 AC 112 ms
54,128 KB
testcase_17 AC 107 ms
54,028 KB
testcase_18 AC 110 ms
53,836 KB
testcase_19 AC 109 ms
53,820 KB
testcase_20 AC 96 ms
52,872 KB
testcase_21 AC 108 ms
53,672 KB
testcase_22 AC 124 ms
54,220 KB
testcase_23 AC 140 ms
54,112 KB
testcase_24 AC 133 ms
53,948 KB
testcase_25 AC 138 ms
54,192 KB
testcase_26 AC 110 ms
53,024 KB
testcase_27 AC 125 ms
53,908 KB
testcase_28 AC 149 ms
54,152 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);
		}

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

	}
}
0