結果

問題 No.167 N^M mod 10
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-12 01:17:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 1,435 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 77,376 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-09-22 01:15:36
合計ジャッジ時間 7,302 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,264 KB
testcase_01 AC 127 ms
41,188 KB
testcase_02 AC 163 ms
41,368 KB
testcase_03 AC 163 ms
41,236 KB
testcase_04 AC 166 ms
41,516 KB
testcase_05 AC 126 ms
41,300 KB
testcase_06 AC 129 ms
41,212 KB
testcase_07 AC 135 ms
41,192 KB
testcase_08 AC 129 ms
41,260 KB
testcase_09 AC 130 ms
41,500 KB
testcase_10 AC 126 ms
41,496 KB
testcase_11 AC 116 ms
40,032 KB
testcase_12 AC 128 ms
41,044 KB
testcase_13 AC 131 ms
41,036 KB
testcase_14 AC 129 ms
41,276 KB
testcase_15 AC 130 ms
41,388 KB
testcase_16 AC 126 ms
41,144 KB
testcase_17 AC 128 ms
41,164 KB
testcase_18 AC 129 ms
41,560 KB
testcase_19 AC 128 ms
41,032 KB
testcase_20 AC 130 ms
41,564 KB
testcase_21 AC 129 ms
41,304 KB
testcase_22 AC 164 ms
41,584 KB
testcase_23 AC 166 ms
41,284 KB
testcase_24 AC 168 ms
41,652 KB
testcase_25 AC 164 ms
41,704 KB
testcase_26 AC 144 ms
41,432 KB
testcase_27 AC 148 ms
41,280 KB
testcase_28 AC 166 ms
41,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        String n = koko.next();
        String m = koko.next();
        char nn = n.charAt(n.length()-1);
        char[] mm = new char[2];
        if(m.length()==1&&m.charAt(m.length()-1)=='0'){
            System.out.println(1);
        }else{
            int mnum=0;
            int ans;
            if(m.length()==1){
                mnum = m.charAt(m.length()-1);
            }else{
                mm[0] = m.charAt(m.length()-2);
                mm[1] = m.charAt(m.length()-1);
                String mmm = String.valueOf(mm);
                mnum = Integer.parseInt(mmm);
            }
            int nnum = Character.getNumericValue(nn);
            if(nnum<2||nnum==5||nnum==6){
                ans = nnum;
            }else if(nnum==2){
               ans = (int)(6*(Math.pow(2,mnum%4)))%10;
            }else if(nnum==3){
                ans = (int)(Math.pow(3,mnum%4))%10;
            }else if(nnum==4){
                ans= (int)(6*(Math.pow(4,mnum%2)))%10;
            }else if(nnum==7){
                ans = (int)(Math.pow(7,mnum%4))%10;
            }else if(nnum==8){
                ans = (int)(6*(Math.pow(8,mnum%4))%10);
            }else{
                ans = (int)(Math.pow(9,mnum%2))%10;
            }
            System.out.println(ans);
        }
    }
}




0