結果

問題 No.167 N^M mod 10
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-03-20 07:46:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 898 bytes
コンパイル時間 3,556 ms
コンパイル使用メモリ 75,500 KB
実行使用メモリ 39,716 KB
最終ジャッジ日時 2024-09-22 01:10:43
合計ジャッジ時間 6,462 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,784 KB
testcase_01 AC 53 ms
36,664 KB
testcase_02 AC 157 ms
39,656 KB
testcase_03 AC 168 ms
39,564 KB
testcase_04 AC 108 ms
39,104 KB
testcase_05 AC 53 ms
36,980 KB
testcase_06 AC 51 ms
36,780 KB
testcase_07 AC 51 ms
36,928 KB
testcase_08 AC 51 ms
36,868 KB
testcase_09 AC 52 ms
37,104 KB
testcase_10 AC 50 ms
37,140 KB
testcase_11 AC 52 ms
36,864 KB
testcase_12 AC 51 ms
36,840 KB
testcase_13 AC 52 ms
37,144 KB
testcase_14 AC 52 ms
37,172 KB
testcase_15 AC 53 ms
37,036 KB
testcase_16 AC 51 ms
37,120 KB
testcase_17 AC 51 ms
37,024 KB
testcase_18 AC 52 ms
36,800 KB
testcase_19 AC 53 ms
37,036 KB
testcase_20 AC 53 ms
37,168 KB
testcase_21 AC 49 ms
37,136 KB
testcase_22 AC 150 ms
39,580 KB
testcase_23 AC 142 ms
39,628 KB
testcase_24 AC 120 ms
39,360 KB
testcase_25 AC 135 ms
39,524 KB
testcase_26 AC 90 ms
39,068 KB
testcase_27 AC 159 ms
39,716 KB
testcase_28 AC 113 ms
39,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.BigInteger;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No167 {

    static final InputStream in = System.in;
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        BigInteger n = new BigInteger(br.readLine());
        BigInteger m = new BigInteger(br.readLine());
        out.println(n.modPow(m,BigInteger.TEN));
    }

    public static void main(String[] args) throws Exception {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0