結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
39,684 KB
testcase_01 AC 89 ms
39,672 KB
testcase_02 AC 109 ms
41,036 KB
testcase_03 AC 96 ms
40,028 KB
testcase_04 WA -
testcase_05 AC 111 ms
40,972 KB
testcase_06 WA -
testcase_07 AC 104 ms
40,944 KB
testcase_08 AC 93 ms
40,464 KB
testcase_09 AC 743 ms
47,268 KB
testcase_10 AC 773 ms
47,308 KB
testcase_11 AC 763 ms
47,264 KB
testcase_12 AC 751 ms
47,444 KB
testcase_13 AC 744 ms
47,484 KB
testcase_14 AC 791 ms
47,564 KB
testcase_15 AC 782 ms
47,040 KB
testcase_16 AC 795 ms
47,448 KB
testcase_17 AC 767 ms
47,524 KB
testcase_18 AC 731 ms
47,320 KB
testcase_19 AC 752 ms
47,296 KB
testcase_20 AC 107 ms
40,996 KB
testcase_21 AC 94 ms
40,068 KB
testcase_22 AC 104 ms
41,304 KB
testcase_23 AC 107 ms
41,068 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){
		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