結果

問題 No.167 N^M mod 10
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-22 19:57:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 2,357 ms
コンパイル使用メモリ 76,628 KB
実行使用メモリ 56,284 KB
最終ジャッジ日時 2024-10-12 20:28:10
合計ジャッジ時間 7,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,156 KB
testcase_01 WA -
testcase_02 AC 142 ms
53,832 KB
testcase_03 AC 160 ms
54,016 KB
testcase_04 WA -
testcase_05 AC 125 ms
53,944 KB
testcase_06 AC 129 ms
53,548 KB
testcase_07 AC 124 ms
53,732 KB
testcase_08 AC 126 ms
53,948 KB
testcase_09 AC 124 ms
53,768 KB
testcase_10 WA -
testcase_11 AC 126 ms
54,004 KB
testcase_12 AC 121 ms
53,896 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 111 ms
52,884 KB
testcase_18 AC 125 ms
54,000 KB
testcase_19 AC 126 ms
53,836 KB
testcase_20 AC 129 ms
53,912 KB
testcase_21 AC 128 ms
53,660 KB
testcase_22 AC 163 ms
53,932 KB
testcase_23 AC 157 ms
54,016 KB
testcase_24 AC 156 ms
54,080 KB
testcase_25 AC 161 ms
54,176 KB
testcase_26 AC 148 ms
54,172 KB
testcase_27 WA -
testcase_28 AC 164 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String n = sc.next();
    String m = sc.next();
    int d = Integer.parseInt(String.valueOf(n.charAt(n.length() - 1)));
    int e = 0;
    if(m.length() > 1) {
      e = Integer.parseInt(String.valueOf(m.charAt(m.length() - 2)) + String.valueOf(m.charAt(n.length() - 1)));
    } else {
      e = Integer.parseInt(String.valueOf(m.charAt(0)));
    }
    int e1 = (e % 4);
    int ans = 1;
    for(int i = 0; i < e1; i++) {
      ans = (ans * d) % 10;
    }
    if(e == 0) ans = 1;
    if(d == 0) ans = 0;
    System.out.println(ans);
  }
}
0