結果

問題 No.167 N^M mod 10
ユーザー ぴろずぴろず
提出日時 2015-03-19 23:25:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 255 ms / 1,000 ms
コード長 317 bytes
コンパイル時間 3,821 ms
コンパイル使用メモリ 73,868 KB
実行使用メモリ 42,180 KB
最終ジャッジ日時 2024-09-22 01:03:42
合計ジャッジ時間 7,845 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,904 KB
testcase_01 AC 118 ms
41,508 KB
testcase_02 AC 255 ms
41,996 KB
testcase_03 AC 242 ms
41,596 KB
testcase_04 AC 176 ms
41,960 KB
testcase_05 AC 119 ms
41,028 KB
testcase_06 AC 116 ms
41,568 KB
testcase_07 AC 119 ms
41,532 KB
testcase_08 AC 104 ms
41,576 KB
testcase_09 AC 115 ms
39,752 KB
testcase_10 AC 118 ms
41,372 KB
testcase_11 AC 118 ms
41,116 KB
testcase_12 AC 120 ms
41,504 KB
testcase_13 AC 118 ms
41,320 KB
testcase_14 AC 116 ms
41,108 KB
testcase_15 AC 117 ms
41,488 KB
testcase_16 AC 122 ms
41,280 KB
testcase_17 AC 107 ms
40,064 KB
testcase_18 AC 123 ms
41,220 KB
testcase_19 AC 118 ms
40,864 KB
testcase_20 AC 120 ms
41,360 KB
testcase_21 AC 119 ms
41,020 KB
testcase_22 AC 196 ms
42,116 KB
testcase_23 AC 223 ms
41,656 KB
testcase_24 AC 236 ms
42,180 KB
testcase_25 AC 218 ms
41,956 KB
testcase_26 AC 126 ms
41,436 KB
testcase_27 AC 207 ms
42,000 KB
testcase_28 AC 188 ms
41,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no167;

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
	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