結果

問題 No.251 大きな桁の復習問題(1)
ユーザー mits58mits58
提出日時 2016-07-25 19:50:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 729 ms / 5,000 ms
コード長 910 bytes
コンパイル時間 2,557 ms
コンパイル使用メモリ 77,792 KB
実行使用メモリ 57,448 KB
最終ジャッジ日時 2024-12-17 17:39:45
合計ジャッジ時間 12,904 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,000 KB
testcase_01 AC 134 ms
54,104 KB
testcase_02 AC 136 ms
54,200 KB
testcase_03 AC 137 ms
54,208 KB
testcase_04 AC 137 ms
54,028 KB
testcase_05 AC 135 ms
54,052 KB
testcase_06 AC 138 ms
54,076 KB
testcase_07 AC 140 ms
54,336 KB
testcase_08 AC 136 ms
54,112 KB
testcase_09 AC 729 ms
57,200 KB
testcase_10 AC 709 ms
57,232 KB
testcase_11 AC 710 ms
57,244 KB
testcase_12 AC 714 ms
57,024 KB
testcase_13 AC 714 ms
57,232 KB
testcase_14 AC 723 ms
57,236 KB
testcase_15 AC 723 ms
57,312 KB
testcase_16 AC 717 ms
57,220 KB
testcase_17 AC 725 ms
57,008 KB
testcase_18 AC 728 ms
57,136 KB
testcase_19 AC 719 ms
57,448 KB
testcase_20 AC 140 ms
54,336 KB
testcase_21 AC 138 ms
54,044 KB
testcase_22 AC 134 ms
54,228 KB
testcase_23 AC 139 ms
53,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
	static BigInteger mod=BigInteger.valueOf(129402307);
	static long pow(long a,long x,long m){
		if(x==0) return 1;
		else if(x%2==0) return pow((a*a)%m,x/2,m)%m;
		else return (a*pow((a*a)%m,x/2,m))%m;
	}
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			BigInteger n=sc.nextBigInteger();
			BigInteger m=sc.nextBigInteger();
			if(n.compareTo(BigInteger.ZERO)==0) System.out.println(0);
			else if(m.compareTo(BigInteger.ZERO)==0) System.out.println(1);
			else{
				n=n.remainder(mod);
				m=m.remainder(mod.subtract(BigInteger.ONE));
				long nn=n.longValue(),mm=m.longValue();
				if(mm==0 && nn==0) System.out.println(0);
				else if(mm==0) System.out.println(1);
				else if(nn==0) System.out.println(0);
				else System.out.println(pow(nn,mm,mod.longValue()));
			}
		}
	}
}
0