結果

問題 No.167 N^M mod 10
ユーザー tentententen
提出日時 2022-10-13 10:54:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 1,454 bytes
コンパイル時間 2,497 ms
コンパイル使用メモリ 77,220 KB
実行使用メモリ 37,372 KB
最終ジャッジ日時 2024-06-26 11:56:28
合計ジャッジ時間 4,873 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,040 KB
testcase_01 AC 50 ms
36,848 KB
testcase_02 AC 61 ms
37,300 KB
testcase_03 AC 62 ms
37,132 KB
testcase_04 AC 66 ms
37,212 KB
testcase_05 AC 51 ms
36,880 KB
testcase_06 AC 52 ms
37,072 KB
testcase_07 AC 51 ms
37,004 KB
testcase_08 AC 51 ms
36,744 KB
testcase_09 AC 51 ms
37,044 KB
testcase_10 AC 51 ms
36,812 KB
testcase_11 AC 50 ms
36,788 KB
testcase_12 AC 50 ms
36,900 KB
testcase_13 AC 52 ms
36,956 KB
testcase_14 AC 50 ms
36,700 KB
testcase_15 AC 51 ms
36,908 KB
testcase_16 AC 50 ms
37,036 KB
testcase_17 AC 49 ms
36,920 KB
testcase_18 AC 50 ms
36,708 KB
testcase_19 AC 50 ms
36,672 KB
testcase_20 AC 50 ms
36,744 KB
testcase_21 AC 51 ms
36,532 KB
testcase_22 AC 60 ms
37,132 KB
testcase_23 AC 63 ms
37,276 KB
testcase_24 AC 62 ms
37,372 KB
testcase_25 AC 61 ms
37,360 KB
testcase_26 AC 55 ms
36,852 KB
testcase_27 AC 61 ms
37,092 KB
testcase_28 AC 61 ms
36,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        String s = sc.next();
        int n = s.charAt(s.length() - 1) - '0';
        char[] values = sc.next().toCharArray();
        int ans = 1;
        int base = n;
        for (int i = values.length - 1; i >= 0; i--) {
            ans *= pow(base, values[i] - '0');
            ans %= 10;
            base = pow(base, 10);
        }
        System.out.println(ans);
    }
    
    static int pow(int x, int p) {
        int ans = 1;
        for (int i = 0; i < p; i++) {
            ans *= x;
            ans %= 10;
        }
        return ans;
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0