結果

問題 No.167 N^M mod 10
ユーザー tsunabittsunabit
提出日時 2020-03-09 23:56:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 243 ms / 1,000 ms
コード長 304 bytes
コンパイル時間 3,481 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 42,500 KB
最終ジャッジ日時 2024-11-15 19:03:28
合計ジャッジ時間 9,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,488 KB
testcase_01 AC 123 ms
41,104 KB
testcase_02 AC 243 ms
42,044 KB
testcase_03 AC 239 ms
42,196 KB
testcase_04 AC 173 ms
41,708 KB
testcase_05 AC 121 ms
41,172 KB
testcase_06 AC 119 ms
41,432 KB
testcase_07 AC 121 ms
41,140 KB
testcase_08 AC 124 ms
41,168 KB
testcase_09 AC 110 ms
40,200 KB
testcase_10 AC 122 ms
41,156 KB
testcase_11 AC 121 ms
41,796 KB
testcase_12 AC 125 ms
41,356 KB
testcase_13 AC 122 ms
41,440 KB
testcase_14 AC 122 ms
41,184 KB
testcase_15 AC 122 ms
41,244 KB
testcase_16 AC 116 ms
41,360 KB
testcase_17 AC 121 ms
41,248 KB
testcase_18 AC 121 ms
41,520 KB
testcase_19 AC 121 ms
41,380 KB
testcase_20 AC 117 ms
41,472 KB
testcase_21 AC 117 ms
41,408 KB
testcase_22 AC 221 ms
42,500 KB
testcase_23 AC 215 ms
42,184 KB
testcase_24 AC 227 ms
41,672 KB
testcase_25 AC 216 ms
42,016 KB
testcase_26 AC 150 ms
41,540 KB
testcase_27 AC 227 ms
41,912 KB
testcase_28 AC 179 ms
41,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No167 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		BigInteger n = new BigInteger(sc.next());
		BigInteger m = new BigInteger(sc.next());
		System.out.println(n.modPow(m, BigInteger.TEN));
	}
}
0