結果

問題 No.167 N^M mod 10
ユーザー t8m8⛄️
提出日時 2015-03-20 07:39:28
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 989 bytes
コンパイル時間 2,925 ms
コンパイル使用メモリ 75,896 KB
実行使用メモリ 51,312 KB
最終ジャッジ日時 2024-06-28 23:45:33
合計ジャッジ時間 5,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15 WA * 7 RE * 5
権限があれば一括ダウンロードができます

ソースコード

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));
        String input = br.readLine();
        int n = Integer.parseInt(input.substring(input.length()-1));
        input = br.readLine();
        int m = Integer.parseInt(input.substring(input.length()-2))%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