結果

問題 No.167 N^M mod 10
ユーザー ぴろずぴろず
提出日時 2015-03-19 23:25:53
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

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