結果

問題 No.167 N^M mod 10
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-21 06:54:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 1,000 ms
コード長 687 bytes
コンパイル時間 3,837 ms
コンパイル使用メモリ 76,608 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-09-22 01:34:48
合計ジャッジ時間 8,951 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,804 KB
testcase_01 AC 129 ms
53,904 KB
testcase_02 AC 164 ms
54,000 KB
testcase_03 AC 165 ms
54,080 KB
testcase_04 AC 166 ms
54,108 KB
testcase_05 AC 130 ms
53,840 KB
testcase_06 AC 129 ms
54,088 KB
testcase_07 AC 129 ms
53,884 KB
testcase_08 AC 131 ms
53,952 KB
testcase_09 AC 129 ms
54,068 KB
testcase_10 AC 129 ms
53,992 KB
testcase_11 AC 126 ms
54,048 KB
testcase_12 AC 129 ms
53,988 KB
testcase_13 AC 129 ms
54,140 KB
testcase_14 AC 127 ms
54,056 KB
testcase_15 AC 129 ms
53,748 KB
testcase_16 AC 129 ms
53,724 KB
testcase_17 AC 129 ms
53,924 KB
testcase_18 AC 129 ms
54,244 KB
testcase_19 AC 129 ms
54,136 KB
testcase_20 AC 130 ms
54,108 KB
testcase_21 AC 131 ms
53,884 KB
testcase_22 AC 172 ms
54,216 KB
testcase_23 AC 165 ms
54,032 KB
testcase_24 AC 166 ms
54,112 KB
testcase_25 AC 166 ms
53,820 KB
testcase_26 AC 143 ms
54,076 KB
testcase_27 AC 166 ms
54,160 KB
testcase_28 AC 168 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise104{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    String str = sc.next();
    int n = Character.getNumericValue(str.charAt(str.length() - 1));
    str = sc.next();
    if(str.equals("0")){
      System.out.println(1);
      return;
    }
    String x = "";
    if(str.length() > 1){
      x += String.valueOf(str.charAt(str.length() - 2));
    }
    x += String.valueOf(str.charAt(str.length() - 1));
    int m = Integer.parseInt(x);

    int[] choises = new int[4];
    for(int i = 1; i <= 4; i++){
      choises[i % 4] = (int)Math.pow(n, i) % 10;
    }
    System.out.println(choises[m % 4]);
  }
}
0