結果

問題 No.167 N^M mod 10
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-03-20 07:29:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 3,397 ms
コンパイル使用メモリ 75,888 KB
実行使用メモリ 52,448 KB
最終ジャッジ日時 2024-06-28 23:44:58
合計ジャッジ時間 5,953 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 51 ms
36,736 KB
testcase_06 WA -
testcase_07 AC 51 ms
37,060 KB
testcase_08 AC 52 ms
37,260 KB
testcase_09 AC 52 ms
36,812 KB
testcase_10 WA -
testcase_11 AC 51 ms
36,892 KB
testcase_12 AC 51 ms
36,828 KB
testcase_13 WA -
testcase_14 AC 51 ms
36,904 KB
testcase_15 AC 51 ms
37,012 KB
testcase_16 AC 51 ms
36,416 KB
testcase_17 AC 52 ms
37,068 KB
testcase_18 AC 50 ms
37,084 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

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));
        int n = Integer.parseInt(br.readLine())%10;
        int m = Integer.parseInt(br.readLine())%4;
        out.println((int)pow(n,m)%10);
    }

    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