結果

問題 No.167 N^M mod 10
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-22 19:56:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 3,205 ms
コンパイル使用メモリ 77,060 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-10-12 20:26:04
合計ジャッジ時間 7,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,900 KB
testcase_01 WA -
testcase_02 AC 158 ms
54,076 KB
testcase_03 AC 136 ms
53,912 KB
testcase_04 WA -
testcase_05 AC 125 ms
53,996 KB
testcase_06 AC 121 ms
53,840 KB
testcase_07 AC 122 ms
53,568 KB
testcase_08 AC 120 ms
54,032 KB
testcase_09 AC 125 ms
53,532 KB
testcase_10 WA -
testcase_11 AC 123 ms
54,020 KB
testcase_12 AC 118 ms
53,712 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 124 ms
53,924 KB
testcase_18 AC 125 ms
53,940 KB
testcase_19 AC 126 ms
53,768 KB
testcase_20 AC 126 ms
53,836 KB
testcase_21 AC 124 ms
53,912 KB
testcase_22 AC 152 ms
53,900 KB
testcase_23 AC 157 ms
54,144 KB
testcase_24 AC 159 ms
53,900 KB
testcase_25 AC 143 ms
53,932 KB
testcase_26 AC 148 ms
53,920 KB
testcase_27 WA -
testcase_28 AC 159 ms
53,900 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)));
    }
    e = (e % 4);
    int ans = 1;
    for(int i = 0; i < e; i++) {
      ans = (ans * d) % 10;
    }
    if(e == 0) ans = 1;
    if(d == 0) ans = 0;
    System.out.println(ans);
  }
}
0