結果

問題 No.167 N^M mod 10
ユーザー Ytz_IchiYtz_Ichi
提出日時 2019-06-28 16:17:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 267 ms / 1,000 ms
コード長 380 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 42,636 KB
最終ジャッジ日時 2024-09-22 01:54:02
合計ジャッジ時間 7,488 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,620 KB
testcase_01 AC 106 ms
40,260 KB
testcase_02 AC 253 ms
42,060 KB
testcase_03 AC 246 ms
42,260 KB
testcase_04 AC 170 ms
41,480 KB
testcase_05 AC 128 ms
41,100 KB
testcase_06 AC 126 ms
41,372 KB
testcase_07 AC 117 ms
41,356 KB
testcase_08 AC 111 ms
40,224 KB
testcase_09 AC 122 ms
41,256 KB
testcase_10 AC 107 ms
40,304 KB
testcase_11 AC 109 ms
40,220 KB
testcase_12 AC 123 ms
41,168 KB
testcase_13 AC 126 ms
41,616 KB
testcase_14 AC 126 ms
41,552 KB
testcase_15 AC 125 ms
41,340 KB
testcase_16 AC 126 ms
41,396 KB
testcase_17 AC 107 ms
39,936 KB
testcase_18 AC 122 ms
41,736 KB
testcase_19 AC 126 ms
41,184 KB
testcase_20 AC 113 ms
40,036 KB
testcase_21 AC 122 ms
41,068 KB
testcase_22 AC 267 ms
42,364 KB
testcase_23 AC 247 ms
42,636 KB
testcase_24 AC 232 ms
41,952 KB
testcase_25 AC 225 ms
41,892 KB
testcase_26 AC 161 ms
41,812 KB
testcase_27 AC 265 ms
42,360 KB
testcase_28 AC 235 ms
41,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.math.*;

public class Main {
    
    void run() {
        Scanner sc = new Scanner(System.in);
        BigInteger N = sc.nextBigInteger();
        BigInteger M = sc.nextBigInteger();
        System.out.println(N.modPow(M, BigInteger.TEN));
    }


    public static void main(String[] args) {
        new Main().run();
    }

}
0