結果

問題 No.167 N^M mod 10
ユーザー YamaKasaYamaKasa
提出日時 2018-07-25 21:40:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 553 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-09-22 01:48:19
合計ジャッジ時間 6,761 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,260 KB
testcase_01 AC 111 ms
41,068 KB
testcase_02 AC 147 ms
41,328 KB
testcase_03 AC 136 ms
41,240 KB
testcase_04 AC 143 ms
41,524 KB
testcase_05 AC 113 ms
41,144 KB
testcase_06 AC 115 ms
40,244 KB
testcase_07 AC 116 ms
41,144 KB
testcase_08 AC 111 ms
40,840 KB
testcase_09 AC 115 ms
40,748 KB
testcase_10 AC 117 ms
41,056 KB
testcase_11 AC 112 ms
40,832 KB
testcase_12 AC 115 ms
41,100 KB
testcase_13 AC 121 ms
41,188 KB
testcase_14 AC 124 ms
41,484 KB
testcase_15 AC 114 ms
40,964 KB
testcase_16 AC 108 ms
40,568 KB
testcase_17 AC 112 ms
41,100 KB
testcase_18 AC 111 ms
41,268 KB
testcase_19 AC 102 ms
40,080 KB
testcase_20 AC 113 ms
41,008 KB
testcase_21 AC 115 ms
40,968 KB
testcase_22 AC 141 ms
41,264 KB
testcase_23 AC 145 ms
41,208 KB
testcase_24 AC 148 ms
41,060 KB
testcase_25 AC 131 ms
40,840 KB
testcase_26 AC 130 ms
41,416 KB
testcase_27 AC 147 ms
41,152 KB
testcase_28 AC 152 ms
41,200 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();
		if(M.equals("0")) {
			System.out.println(1);
			System.exit(0);
		}
		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