結果

問題 No.167 N^M mod 10
ユーザー Mcpu3Mcpu3
提出日時 2018-10-07 20:11:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,367 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 78,172 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-10-12 14:16:39
合計ジャッジ時間 6,884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,376 KB
testcase_01 AC 120 ms
41,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 152 ms
41,304 KB
testcase_05 AC 120 ms
41,352 KB
testcase_06 AC 108 ms
40,324 KB
testcase_07 AC 118 ms
41,388 KB
testcase_08 AC 118 ms
40,868 KB
testcase_09 AC 108 ms
39,832 KB
testcase_10 AC 119 ms
41,340 KB
testcase_11 AC 119 ms
41,592 KB
testcase_12 AC 121 ms
41,236 KB
testcase_13 AC 119 ms
41,224 KB
testcase_14 AC 120 ms
41,392 KB
testcase_15 AC 119 ms
41,116 KB
testcase_16 AC 122 ms
41,064 KB
testcase_17 AC 120 ms
41,128 KB
testcase_18 AC 120 ms
41,196 KB
testcase_19 AC 121 ms
41,572 KB
testcase_20 AC 120 ms
41,108 KB
testcase_21 AC 120 ms
41,276 KB
testcase_22 AC 154 ms
41,188 KB
testcase_23 AC 162 ms
41,368 KB
testcase_24 AC 140 ms
41,192 KB
testcase_25 AC 152 ms
40,988 KB
testcase_26 AC 134 ms
41,480 KB
testcase_27 AC 154 ms
41,184 KB
testcase_28 AC 152 ms
41,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String N = sc.next(), M = sc.next();
        sc.close();
        int N_length = N.length(), M_length = M.length(), tmp;
        if (M.charAt(0) == '0') System.out.print(1);
        else if (N.charAt(N_length - 1) == '0') System.out.print(0);
        else {
            if (N.charAt(N_length - 1) == '1' || N.charAt(N_length - 1) == '5' || N.charAt(N_length - 1) == '6') System.out.print(N.charAt(N_length - 1));
            else if (N.charAt(N_length - 1) == '4' || N.charAt(N_length - 1) == '9') {
                if ((M.charAt(M_length - 1) - '0') % 2 == 0) {
                    if (N.charAt(N_length - 1) == '4') System.out.print(6);
                    else System.out.print(1);
                }
                else System.out.print(N.charAt(N_length - 1));
            }
            else {
                if (M_length == 1) tmp = M.charAt(0) - '0';
                else tmp = 10 * (M.charAt(M_length - 2) - '0') + M.charAt(M_length - 1) - '0';
                if (N.charAt(N_length - 1) == '2') {
                    if (tmp % 4 == 1) System.out.print(2);
                    else if (tmp % 4 == 2) System.out.print(4);
                    else if (tmp % 3 == 3) System.out.print(8);
                    else System.out.print(6);
                }
                else if (N.charAt(N_length - 1) == '3') {
                    if (tmp % 4 == 1) System.out.print(3);
                    else if (tmp % 4 == 2) System.out.print(9);
                    else if (tmp % 4 == 3) System.out.print(7);
                    else System.out.print(1);
                }
                else if (N.charAt(N_length - 1) == '7') {
                    if (tmp % 4 == 1) System.out.print(7);
                    else if (tmp % 4 == 2) System.out.print(9);
                    else if (tmp % 4 == 3) System.out.print(3);
                    else System.out.print(1);
                }
                else {
                    if (tmp % 4 == 1) System.out.print(8);
                    else if (tmp % 4 == 2) System.out.print(4);
                    else if (tmp % 4 == 3) System.out.print(2);
                    else System.out.print(6);
                }
            }
        }
    }
}
0