結果
| 問題 |
No.167 N^M mod 10
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2022-07-29 09:55:50 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 64 ms / 1,000 ms |
| コード長 | 1,441 bytes |
| コンパイル時間 | 1,997 ms |
| コンパイル使用メモリ | 77,120 KB |
| 実行使用メモリ | 37,304 KB |
| 最終ジャッジ日時 | 2024-07-19 01:34:09 |
| 合計ジャッジ時間 | 4,567 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 27 |
ソースコード
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner();
char[] input = sc.next().toCharArray();
int n = input[input.length - 1] - '0';
int ans = 1;
char[] next = sc.next().toCharArray();
for (int i = next.length - 1; i >= 0; i--) {
ans *= pow(n, next[i] - '0');
ans %= 10;
n = pow(n, 10);
}
System.out.println(ans);
}
static int pow(int x, int p) {
if (p == 0) {
return 1;
} else if (p % 2 == 0) {
return pow(x * x % 10, p / 2);
} else {
return pow(x, p - 1) * x % 10;
}
}
}
class Scanner {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer("");
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();
}
}
tenten