結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,752 KB
testcase_01 AC 99 ms
52,956 KB
testcase_02 AC 137 ms
54,068 KB
testcase_03 AC 136 ms
54,276 KB
testcase_04 AC 141 ms
54,372 KB
testcase_05 AC 96 ms
52,676 KB
testcase_06 AC 108 ms
53,804 KB
testcase_07 AC 96 ms
52,960 KB
testcase_08 AC 95 ms
53,024 KB
testcase_09 AC 106 ms
53,880 KB
testcase_10 AC 96 ms
53,152 KB
testcase_11 AC 105 ms
54,116 KB
testcase_12 AC 91 ms
52,420 KB
testcase_13 AC 98 ms
52,832 KB
testcase_14 WA -
testcase_15 AC 96 ms
53,004 KB
testcase_16 AC 91 ms
52,520 KB
testcase_17 AC 103 ms
53,736 KB
testcase_18 AC 109 ms
53,340 KB
testcase_19 AC 105 ms
53,712 KB
testcase_20 AC 108 ms
53,800 KB
testcase_21 AC 95 ms
52,660 KB
testcase_22 AC 120 ms
54,108 KB
testcase_23 AC 132 ms
53,688 KB
testcase_24 AC 125 ms
54,104 KB
testcase_25 AC 134 ms
54,052 KB
testcase_26 WA -
testcase_27 AC 126 ms
53,864 KB
testcase_28 AC 133 ms
53,864 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()));
		} else {
			b = Integer.parseInt(mString);
		}
		b %= 4;
		b += 4;

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

	}
}
0