結果
問題 | No.167 N^M mod 10 |
ユーザー | tenten |
提出日時 | 2022-07-29 09:55:50 |
言語 | Java21 (openjdk 21) |
結果 |
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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
36,824 KB |
testcase_01 | AC | 46 ms
37,156 KB |
testcase_02 | AC | 57 ms
37,040 KB |
testcase_03 | AC | 59 ms
37,304 KB |
testcase_04 | AC | 64 ms
36,968 KB |
testcase_05 | AC | 47 ms
36,832 KB |
testcase_06 | AC | 46 ms
36,708 KB |
testcase_07 | AC | 50 ms
37,176 KB |
testcase_08 | AC | 51 ms
36,828 KB |
testcase_09 | AC | 48 ms
36,868 KB |
testcase_10 | AC | 48 ms
37,044 KB |
testcase_11 | AC | 46 ms
36,988 KB |
testcase_12 | AC | 46 ms
36,940 KB |
testcase_13 | AC | 49 ms
36,836 KB |
testcase_14 | AC | 47 ms
36,868 KB |
testcase_15 | AC | 47 ms
36,964 KB |
testcase_16 | AC | 46 ms
37,008 KB |
testcase_17 | AC | 46 ms
37,232 KB |
testcase_18 | AC | 45 ms
36,808 KB |
testcase_19 | AC | 47 ms
36,924 KB |
testcase_20 | AC | 46 ms
36,896 KB |
testcase_21 | AC | 46 ms
37,192 KB |
testcase_22 | AC | 56 ms
37,296 KB |
testcase_23 | AC | 57 ms
37,252 KB |
testcase_24 | AC | 57 ms
37,076 KB |
testcase_25 | AC | 57 ms
37,160 KB |
testcase_26 | AC | 49 ms
37,040 KB |
testcase_27 | AC | 57 ms
37,100 KB |
testcase_28 | AC | 56 ms
37,076 KB |
ソースコード
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(); } }