結果

問題 No.167 N^M mod 10
ユーザー 37zigen37zigen
提出日時 2016-04-11 12:01:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 1,000 ms
コード長 1,111 bytes
コンパイル時間 1,960 ms
コンパイル使用メモリ 77,480 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-09-22 01:29:19
合計ジャッジ時間 6,870 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
39,976 KB
testcase_01 AC 113 ms
41,344 KB
testcase_02 AC 155 ms
41,460 KB
testcase_03 AC 159 ms
41,436 KB
testcase_04 AC 205 ms
41,864 KB
testcase_05 AC 103 ms
39,864 KB
testcase_06 AC 113 ms
41,208 KB
testcase_07 AC 105 ms
39,924 KB
testcase_08 AC 124 ms
40,960 KB
testcase_09 AC 120 ms
41,132 KB
testcase_10 AC 118 ms
41,356 KB
testcase_11 AC 116 ms
41,100 KB
testcase_12 AC 118 ms
41,164 KB
testcase_13 AC 120 ms
41,008 KB
testcase_14 AC 126 ms
41,144 KB
testcase_15 AC 99 ms
39,760 KB
testcase_16 AC 114 ms
41,000 KB
testcase_17 AC 119 ms
41,480 KB
testcase_18 AC 120 ms
41,256 KB
testcase_19 AC 120 ms
41,356 KB
testcase_20 AC 119 ms
41,148 KB
testcase_21 AC 119 ms
41,324 KB
testcase_22 AC 159 ms
41,272 KB
testcase_23 AC 159 ms
41,444 KB
testcase_24 AC 180 ms
41,604 KB
testcase_25 AC 192 ms
41,708 KB
testcase_26 AC 153 ms
41,492 KB
testcase_27 AC 187 ms
41,704 KB
testcase_28 AC 207 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().sovle();
	}
	//0   0,0,0,0,
	//1   1,1,1,1,
	//2   2,4,8,6,
	//3   3,9,7,1,
	//4   4,6,4,6,
	//5   5,5,5,5,
	//6   6,6,6,6,
	//7   7,9,3,1,
	//8   8,4,2,6,
	//9   9,1,9,2,
	void sovle(){
		Scanner sc=new Scanner(System.in);
		String N=sc.next();
		String M=sc.next();
		BigInteger nn=new BigInteger(N);
		nn=nn.mod(BigInteger.TEN);
		int n=nn.intValue();
		BigInteger m=new BigInteger(M);
		if(m.equals(BigInteger.ZERO)){
			System.out.println(1);
			return;
		}
		m=m.mod(BigInteger.valueOf(4)).add(BigInteger.valueOf(4));
		//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