結果

問題 No.167 N^M mod 10
ユーザー rf141rf141
提出日時 2015-07-27 01:04:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 284 ms / 1,000 ms
コード長 271 bytes
コンパイル時間 3,266 ms
コンパイル使用メモリ 75,284 KB
実行使用メモリ 55,112 KB
最終ジャッジ日時 2024-09-22 01:18:05
合計ジャッジ時間 9,249 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,652 KB
testcase_01 AC 129 ms
54,108 KB
testcase_02 AC 266 ms
54,660 KB
testcase_03 AC 284 ms
54,444 KB
testcase_04 AC 212 ms
54,476 KB
testcase_05 AC 128 ms
53,992 KB
testcase_06 AC 129 ms
54,056 KB
testcase_07 AC 129 ms
54,100 KB
testcase_08 AC 128 ms
54,168 KB
testcase_09 AC 131 ms
54,184 KB
testcase_10 AC 128 ms
53,768 KB
testcase_11 AC 129 ms
54,216 KB
testcase_12 AC 129 ms
53,952 KB
testcase_13 AC 128 ms
54,024 KB
testcase_14 AC 129 ms
54,008 KB
testcase_15 AC 135 ms
53,920 KB
testcase_16 AC 129 ms
54,148 KB
testcase_17 AC 133 ms
54,148 KB
testcase_18 AC 128 ms
54,200 KB
testcase_19 AC 128 ms
54,148 KB
testcase_20 AC 129 ms
53,980 KB
testcase_21 AC 129 ms
54,216 KB
testcase_22 AC 262 ms
54,556 KB
testcase_23 AC 266 ms
54,840 KB
testcase_24 AC 261 ms
54,372 KB
testcase_25 AC 259 ms
55,112 KB
testcase_26 AC 162 ms
54,252 KB
testcase_27 AC 258 ms
54,708 KB
testcase_28 AC 212 ms
54,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
public class nmMod{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		String n = scan.next(),m = scan.next();
		System.out.println(new BigInteger(n).modPow(new BigInteger(m),BigInteger.TEN));
	}
}
0