結果

問題 No.251 大きな桁の復習問題(1)
ユーザー ぴろず
提出日時 2015-07-24 22:34:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 792 ms / 5,000 ms
コード長 334 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 57,372 KB
最終ジャッジ日時 2024-12-17 17:07:21
合計ジャッジ時間 13,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

package no251;

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.valueOf(129402307)));
	}

}
0