結果

問題 No.251 大きな桁の復習問題(1)
ユーザー 37zigen37zigen
提出日時 2016-05-03 20:07:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,228 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 77,396 KB
実行使用メモリ 57,144 KB
最終ジャッジ日時 2024-10-05 05:57:51
合計ジャッジ時間 12,552 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,116 KB
testcase_01 WA -
testcase_02 AC 133 ms
54,056 KB
testcase_03 AC 130 ms
53,752 KB
testcase_04 AC 131 ms
53,940 KB
testcase_05 AC 130 ms
53,800 KB
testcase_06 AC 128 ms
54,116 KB
testcase_07 AC 119 ms
53,960 KB
testcase_08 AC 129 ms
54,000 KB
testcase_09 AC 698 ms
56,708 KB
testcase_10 AC 714 ms
56,940 KB
testcase_11 AC 703 ms
57,056 KB
testcase_12 AC 711 ms
56,844 KB
testcase_13 AC 689 ms
56,956 KB
testcase_14 AC 690 ms
57,028 KB
testcase_15 AC 705 ms
56,964 KB
testcase_16 AC 709 ms
56,928 KB
testcase_17 AC 697 ms
57,144 KB
testcase_18 AC 675 ms
56,380 KB
testcase_19 AC 702 ms
56,896 KB
testcase_20 AC 130 ms
53,888 KB
testcase_21 AC 129 ms
53,732 KB
testcase_22 AC 128 ms
54,016 KB
testcase_23 AC 128 ms
54,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.math.BigInteger;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	final long mod=129402307;
	void solve(){
		Scanner sc=new Scanner(System.in);
		BigInteger n=new BigInteger(sc.next());
		BigInteger m=new BigInteger(sc.next());
		BigInteger ans=pow(n,m,mod);
		System.out.println(ans);
		//n^m mod p を求める。
	}
	
	/**
	 * A^N mod p
	 * 
	 * 1.フェルマーの小定理を用いてNをp-1以下にする
	 * 2.繰り返し二乗法
	 * 
	 */
	BigInteger pow(BigInteger A,BigInteger n,long p){
		A=A.remainder(BigInteger.valueOf(p));
		if(A.compareTo(BigInteger.ZERO)==0)return BigInteger.ZERO;
		BigInteger ans=BigInteger.ONE;
		n=n.remainder(BigInteger.valueOf(p-1));
		while(n.compareTo(BigInteger.ONE)>=0){
			if(n.remainder(BigInteger.valueOf(2)).compareTo(BigInteger.valueOf(0))==0){
				A=A.multiply(A);
				A=A.remainder(BigInteger.valueOf(p));
				n=n.divide(BigInteger.valueOf(2));
			}else if(n.remainder(BigInteger.valueOf(2)).compareTo(BigInteger.valueOf(1))==0){
				ans=ans.multiply(A);
				ans=ans.remainder(BigInteger.valueOf(p));
				n=n.subtract(BigInteger.ONE);
			}
		}
		return ans;
	}
}
0