結果

問題 No.167 N^M mod 10
ユーザー YamaKasaYamaKasa
提出日時 2018-07-25 21:38:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 75,788 KB
実行使用メモリ 54,664 KB
最終ジャッジ日時 2024-06-27 03:35:25
合計ジャッジ時間 7,001 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,844 KB
testcase_01 AC 124 ms
53,856 KB
testcase_02 AC 155 ms
54,552 KB
testcase_03 AC 142 ms
54,092 KB
testcase_04 AC 160 ms
54,432 KB
testcase_05 AC 124 ms
53,732 KB
testcase_06 AC 128 ms
53,876 KB
testcase_07 AC 130 ms
54,156 KB
testcase_08 AC 129 ms
54,048 KB
testcase_09 AC 128 ms
54,116 KB
testcase_10 AC 123 ms
53,680 KB
testcase_11 AC 129 ms
53,996 KB
testcase_12 AC 124 ms
53,896 KB
testcase_13 AC 124 ms
54,376 KB
testcase_14 WA -
testcase_15 AC 126 ms
54,240 KB
testcase_16 AC 125 ms
54,080 KB
testcase_17 AC 125 ms
53,656 KB
testcase_18 AC 126 ms
53,896 KB
testcase_19 AC 126 ms
53,936 KB
testcase_20 AC 122 ms
53,884 KB
testcase_21 AC 124 ms
54,004 KB
testcase_22 AC 164 ms
54,364 KB
testcase_23 AC 160 ms
54,388 KB
testcase_24 AC 159 ms
54,664 KB
testcase_25 AC 155 ms
54,392 KB
testcase_26 WA -
testcase_27 AC 140 ms
53,916 KB
testcase_28 AC 143 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String N = scan.next();
		String M = scan.next();
		scan.close();
		int n = Integer.parseInt(N.substring(N.length() - 1, N.length()));
		int m = 0;
		if(M.length() < 2) {
			m = Integer.parseInt(M);
		}else {
			m = Integer.parseInt(M.substring(M.length() - 2, M.length()));
		}

		m = m % 4;
		System.out.println((int)Math.pow(n, m + 4) % 10);

	}
}
0