結果

問題 No.167 N^M mod 10
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-02 17:24:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 746 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 75,240 KB
実行使用メモリ 41,292 KB
最終ジャッジ日時 2024-09-22 01:38:10
合計ジャッジ時間 6,958 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,664 KB
testcase_01 AC 114 ms
41,128 KB
testcase_02 AC 142 ms
41,156 KB
testcase_03 AC 143 ms
41,176 KB
testcase_04 AC 142 ms
41,172 KB
testcase_05 AC 117 ms
40,796 KB
testcase_06 AC 104 ms
40,604 KB
testcase_07 AC 105 ms
40,448 KB
testcase_08 AC 113 ms
40,812 KB
testcase_09 AC 111 ms
40,744 KB
testcase_10 AC 98 ms
39,944 KB
testcase_11 AC 110 ms
40,948 KB
testcase_12 AC 114 ms
40,048 KB
testcase_13 AC 112 ms
40,844 KB
testcase_14 AC 108 ms
41,092 KB
testcase_15 AC 102 ms
40,116 KB
testcase_16 AC 118 ms
41,048 KB
testcase_17 AC 117 ms
41,164 KB
testcase_18 AC 116 ms
41,056 KB
testcase_19 AC 114 ms
41,040 KB
testcase_20 AC 120 ms
41,080 KB
testcase_21 AC 114 ms
40,756 KB
testcase_22 AC 134 ms
41,200 KB
testcase_23 AC 139 ms
40,988 KB
testcase_24 AC 148 ms
41,292 KB
testcase_25 AC 140 ms
41,152 KB
testcase_26 AC 134 ms
41,216 KB
testcase_27 AC 146 ms
41,208 KB
testcase_28 AC 145 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String NSt = sc.next();
        String MSt = sc.next();
        int ans = pow(NSt,MSt);
        System.out.println(ans);
    }
    static int pow(String A, String B){
        if(B.equals("0")){
            return 1;
        }
        int x = A.length();
        int N = Integer.parseInt(A.substring(x-1));
        int y = B.length();
        if(y<3){y=3;}
        int M = Integer.parseInt(B.substring(y-3));
        int r = M%4;
        int z = N;
        if(r==0){
            z = (int)(Math.pow(N,4))%10;
        }else if(r!=1){
            z = (int)(Math.pow(N,r))%10;
        }
        return z;
    }
}
0