結果

問題 No.167 N^M mod 10
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-29 20:24:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 609 bytes
コンパイル時間 3,562 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 39,716 KB
最終ジャッジ日時 2024-09-22 01:15:50
合計ジャッジ時間 7,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,820 KB
testcase_01 AC 50 ms
37,012 KB
testcase_02 AC 154 ms
39,364 KB
testcase_03 AC 165 ms
39,716 KB
testcase_04 AC 96 ms
38,764 KB
testcase_05 AC 50 ms
36,976 KB
testcase_06 AC 49 ms
37,084 KB
testcase_07 AC 48 ms
36,760 KB
testcase_08 AC 50 ms
37,048 KB
testcase_09 AC 50 ms
36,908 KB
testcase_10 AC 49 ms
36,904 KB
testcase_11 AC 49 ms
37,076 KB
testcase_12 AC 49 ms
37,212 KB
testcase_13 AC 49 ms
37,008 KB
testcase_14 AC 50 ms
36,976 KB
testcase_15 AC 50 ms
36,988 KB
testcase_16 AC 51 ms
36,820 KB
testcase_17 AC 50 ms
37,076 KB
testcase_18 AC 51 ms
37,044 KB
testcase_19 AC 49 ms
36,984 KB
testcase_20 AC 49 ms
36,752 KB
testcase_21 AC 49 ms
37,208 KB
testcase_22 AC 141 ms
39,232 KB
testcase_23 AC 144 ms
39,336 KB
testcase_24 AC 143 ms
39,396 KB
testcase_25 AC 148 ms
39,420 KB
testcase_26 AC 100 ms
38,840 KB
testcase_27 AC 157 ms
39,376 KB
testcase_28 AC 120 ms
38,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No167 {

    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            BigInteger N = new BigInteger(br.readLine());
            BigInteger M = new BigInteger(br.readLine());
            BigInteger mod = new BigInteger("10");
            System.out.println(N.modPow(M, mod));
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }
}
0