結果

問題 No.167 N^M mod 10
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-20 02:42:25
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 534 bytes
コンパイル時間 3,021 ms
コンパイル使用メモリ 73,668 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-11-27 06:36:03
合計ジャッジ時間 7,651 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,652 KB
testcase_01 AC 103 ms
40,156 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 119 ms
41,108 KB
testcase_06 AC 118 ms
41,444 KB
testcase_07 AC 117 ms
41,244 KB
testcase_08 AC 116 ms
41,228 KB
testcase_09 AC 105 ms
40,284 KB
testcase_10 AC 117 ms
41,108 KB
testcase_11 AC 116 ms
41,324 KB
testcase_12 AC 105 ms
40,160 KB
testcase_13 AC 114 ms
40,980 KB
testcase_14 AC 116 ms
41,352 KB
testcase_15 AC 113 ms
41,052 KB
testcase_16 AC 115 ms
40,892 KB
testcase_17 AC 117 ms
41,044 KB
testcase_18 AC 105 ms
39,736 KB
testcase_19 AC 119 ms
40,988 KB
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) {
        Scanner sc = new Scanner(System.in);
        long N = sc.nextLong();
        long M = sc.nextLong();
        long r = powmod(N,M);
        System.out.println(r);
    }
    static long powmod(long a, long b){
        a%=10;
        long x=1;
        if(b==0){
            return 1;
        }else if(b%2==0){
            x = powmod(a*a%10, b/2)%10;
        }else{
            x = a*powmod(a*a%10, b/2)%10;
        }
        return x;
    }
}
0