結果

問題 No.167 N^M mod 10
ユーザー kuramukuramu
提出日時 2016-01-29 11:58:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 541 bytes
コンパイル時間 1,872 ms
コンパイル使用メモリ 72,868 KB
実行使用メモリ 39,516 KB
最終ジャッジ日時 2024-09-21 17:51:07
合計ジャッジ時間 4,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,920 KB
testcase_01 AC 48 ms
36,900 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 100 ms
39,184 KB
testcase_05 WA -
testcase_06 AC 49 ms
37,044 KB
testcase_07 AC 47 ms
37,088 KB
testcase_08 AC 47 ms
37,276 KB
testcase_09 AC 46 ms
36,928 KB
testcase_10 AC 48 ms
36,984 KB
testcase_11 AC 51 ms
37,164 KB
testcase_12 WA -
testcase_13 AC 48 ms
36,912 KB
testcase_14 WA -
testcase_15 AC 51 ms
36,992 KB
testcase_16 AC 50 ms
36,916 KB
testcase_17 AC 47 ms
37,076 KB
testcase_18 AC 48 ms
36,900 KB
testcase_19 WA -
testcase_20 AC 47 ms
36,952 KB
testcase_21 AC 45 ms
37,036 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 127 ms
39,392 KB
testcase_25 AC 127 ms
39,320 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 104 ms
38,676 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(n, new BigInteger("10")));
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0