結果

問題 No.167 N^M mod 10
ユーザー 37zigen37zigen
提出日時 2016-04-11 11:40:23
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 783 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 77,968 KB
実行使用メモリ 59,952 KB
最終ジャッジ日時 2024-10-04 06:02:44
合計ジャッジ時間 13,972 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,888 KB
testcase_01 AC 100 ms
52,800 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 104 ms
53,036 KB
testcase_06 AC 107 ms
54,180 KB
testcase_07 AC 110 ms
53,768 KB
testcase_08 AC 95 ms
52,780 KB
testcase_09 AC 109 ms
54,068 KB
testcase_10 AC 97 ms
52,712 KB
testcase_11 AC 106 ms
54,084 KB
testcase_12 AC 106 ms
54,060 KB
testcase_13 AC 108 ms
55,916 KB
testcase_14 AC 113 ms
53,876 KB
testcase_15 AC 108 ms
54,088 KB
testcase_16 AC 108 ms
53,928 KB
testcase_17 AC 108 ms
53,876 KB
testcase_18 AC 111 ms
53,832 KB
testcase_19 AC 110 ms
54,100 KB
testcase_20 AC 106 ms
54,120 KB
testcase_21 AC 112 ms
54,228 KB
testcase_22 TLE -
testcase_23 AC 983 ms
58,020 KB
testcase_24 TLE -
testcase_25 AC 976 ms
58,004 KB
testcase_26 AC 125 ms
54,120 KB
testcase_27 AC 928 ms
58,060 KB
testcase_28 AC 928 ms
57,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.*;
import java.math.*;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().sovle();
	}
	void sovle(){
		Scanner sc=new Scanner(System.in);
		String N=sc.next();
		String M=sc.next();
		int n=N.charAt(N.length()-1)-'0';
		BigInteger m=new BigInteger(M);
		//n^m mod 10
		System.out.println(pow(n,m,10));
		
	}
	int pow(int n,BigInteger m,int mod){
		int ans=1;
		int pow=n;
		while(m.compareTo(BigInteger.ONE)>=0){
			if(m.mod(BigInteger.valueOf(2)).equals(BigInteger.ZERO)){
				pow*=pow;
				pow%=mod;
				m=m.divide(BigInteger.valueOf(2));
			}else{
				ans*=pow;
				ans%=mod;
				m=m.subtract(BigInteger.ONE);
			}
		}
		return ans;
	}
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}
	
}
0