結果
問題 | No.167 N^M mod 10 |
ユーザー | tenten |
提出日時 | 2023-12-18 11:24:43 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 74 ms / 1,000 ms |
コード長 | 1,958 bytes |
コンパイル時間 | 2,857 ms |
コンパイル使用メモリ | 88,888 KB |
実行使用メモリ | 52,412 KB |
最終ジャッジ日時 | 2024-09-27 08:20:56 |
合計ジャッジ時間 | 5,883 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
50,464 KB |
testcase_01 | AC | 59 ms
50,364 KB |
testcase_02 | AC | 71 ms
50,988 KB |
testcase_03 | AC | 74 ms
50,776 KB |
testcase_04 | AC | 69 ms
50,688 KB |
testcase_05 | AC | 56 ms
50,192 KB |
testcase_06 | AC | 57 ms
50,392 KB |
testcase_07 | AC | 55 ms
50,396 KB |
testcase_08 | AC | 57 ms
50,040 KB |
testcase_09 | AC | 58 ms
50,404 KB |
testcase_10 | AC | 55 ms
50,168 KB |
testcase_11 | AC | 56 ms
50,308 KB |
testcase_12 | AC | 56 ms
50,284 KB |
testcase_13 | AC | 57 ms
50,284 KB |
testcase_14 | AC | 58 ms
50,404 KB |
testcase_15 | AC | 61 ms
50,252 KB |
testcase_16 | AC | 58 ms
50,284 KB |
testcase_17 | AC | 56 ms
50,520 KB |
testcase_18 | AC | 58 ms
52,412 KB |
testcase_19 | AC | 57 ms
50,024 KB |
testcase_20 | AC | 58 ms
50,176 KB |
testcase_21 | AC | 58 ms
50,128 KB |
testcase_22 | AC | 70 ms
50,952 KB |
testcase_23 | AC | 71 ms
51,044 KB |
testcase_24 | AC | 69 ms
51,032 KB |
testcase_25 | AC | 68 ms
50,964 KB |
testcase_26 | AC | 60 ms
50,128 KB |
testcase_27 | AC | 69 ms
50,736 KB |
testcase_28 | AC | 71 ms
50,740 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); char[] inputN = sc.next().toCharArray(); int n = inputN[inputN.length - 1] - '0'; char[] inputM = sc.next().toCharArray(); int ans = 1; for (int i = inputM.length - 1; i >= 0; i--) { int x = inputM[i] - '0'; ans *= pow(n, x); ans %= 10; n = pow(n, 10); } System.out.println(ans); } static int pow(int x, int p) { if (p == 0) { return 1; } else { return pow(x, p - 1) * x % 10; } } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } 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 int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }