結果

問題 No.167 N^M mod 10
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-22 19:50:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 629 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 76,936 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-10-12 20:18:44
合計ジャッジ時間 6,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,144 KB
testcase_01 AC 119 ms
41,144 KB
testcase_02 AC 152 ms
41,220 KB
testcase_03 AC 153 ms
41,256 KB
testcase_04 AC 146 ms
41,244 KB
testcase_05 WA -
testcase_06 AC 120 ms
40,976 KB
testcase_07 AC 112 ms
40,988 KB
testcase_08 AC 116 ms
40,976 KB
testcase_09 AC 120 ms
41,024 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 109 ms
40,276 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 117 ms
40,956 KB
testcase_18 AC 114 ms
40,992 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 144 ms
41,436 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 152 ms
41,468 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 = d;
    for(int i = 0; i < e - 1; i++) {
      ans *= d;
    }
    if(d == 0) ans = 0;
    System.out.println(ans);
  }
}
0