結果

問題 No.167 N^M mod 10
ユーザー kuramukuramu
提出日時 2016-01-29 11:59:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 1,000 ms
コード長 543 bytes
コンパイル時間 1,812 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 52,736 KB
最終ジャッジ日時 2024-09-22 01:27:28
合計ジャッジ時間 5,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,508 KB
testcase_01 AC 54 ms
50,160 KB
testcase_02 AC 173 ms
52,508 KB
testcase_03 AC 166 ms
52,444 KB
testcase_04 AC 106 ms
52,056 KB
testcase_05 AC 52 ms
50,472 KB
testcase_06 AC 54 ms
50,420 KB
testcase_07 AC 53 ms
50,124 KB
testcase_08 AC 53 ms
50,012 KB
testcase_09 AC 54 ms
50,344 KB
testcase_10 AC 53 ms
50,168 KB
testcase_11 AC 52 ms
50,044 KB
testcase_12 AC 52 ms
50,140 KB
testcase_13 AC 53 ms
50,360 KB
testcase_14 AC 52 ms
50,132 KB
testcase_15 AC 53 ms
49,944 KB
testcase_16 AC 53 ms
50,108 KB
testcase_17 AC 52 ms
50,192 KB
testcase_18 AC 53 ms
50,460 KB
testcase_19 AC 55 ms
50,516 KB
testcase_20 AC 55 ms
50,120 KB
testcase_21 AC 53 ms
50,472 KB
testcase_22 AC 147 ms
52,500 KB
testcase_23 AC 142 ms
52,608 KB
testcase_24 AC 151 ms
52,452 KB
testcase_25 AC 140 ms
52,432 KB
testcase_26 AC 91 ms
51,996 KB
testcase_27 AC 162 ms
52,736 KB
testcase_28 AC 119 ms
51,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class Main {
	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  BigInteger n = new BigInteger(stdReader.readLine());
	    	  BigInteger m = new BigInteger(stdReader.readLine());
	    	  System.out.println(n.modPow(m, BigInteger.valueOf(10)));
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0