結果

問題 No.167 N^M mod 10
ユーザー 37zigen37zigen
提出日時 2016-04-11 11:25:27
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 476 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-10-04 06:01:00
合計ジャッジ時間 7,675 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,044 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 WA -
testcase_06 AC 130 ms
53,996 KB
testcase_07 AC 129 ms
53,884 KB
testcase_08 AC 129 ms
54,200 KB
testcase_09 AC 129 ms
54,120 KB
testcase_10 AC 128 ms
52,748 KB
testcase_11 AC 116 ms
52,744 KB
testcase_12 AC 129 ms
54,124 KB
testcase_13 AC 115 ms
52,948 KB
testcase_14 AC 116 ms
52,992 KB
testcase_15 AC 116 ms
52,648 KB
testcase_16 WA -
testcase_17 AC 129 ms
53,920 KB
testcase_18 WA -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().sovle();
	}
	void sovle(){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int m=sc.nextInt();
		//n^m mod 10
		System.out.println(pow(n,m,10));
		
	}
	int pow(int n,int m,int mod){
		int ans=1;
		int pow=n;
		while(m>=1){
			if(m%2==0){
				pow*=pow;
				pow%=mod;
				m/=2;
			}else{
				ans*=pow;
				ans%=mod;
				m--;
			}
		}
		return ans;
	}
	
}
0