結果
問題 | No.167 N^M mod 10 |
ユーザー | Mcpu3 |
提出日時 | 2018-10-07 20:29:27 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 152 ms / 1,000 ms |
コード長 | 2,334 bytes |
コンパイル時間 | 1,997 ms |
コンパイル使用メモリ | 77,192 KB |
実行使用メモリ | 41,408 KB |
最終ジャッジ日時 | 2024-09-22 01:49:07 |
合計ジャッジ時間 | 6,484 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
40,900 KB |
testcase_01 | AC | 117 ms
41,068 KB |
testcase_02 | AC | 132 ms
41,140 KB |
testcase_03 | AC | 152 ms
41,392 KB |
testcase_04 | AC | 133 ms
41,176 KB |
testcase_05 | AC | 116 ms
40,824 KB |
testcase_06 | AC | 113 ms
39,692 KB |
testcase_07 | AC | 113 ms
41,088 KB |
testcase_08 | AC | 116 ms
41,336 KB |
testcase_09 | AC | 105 ms
40,016 KB |
testcase_10 | AC | 116 ms
41,004 KB |
testcase_11 | AC | 113 ms
40,804 KB |
testcase_12 | AC | 113 ms
40,880 KB |
testcase_13 | AC | 113 ms
41,008 KB |
testcase_14 | AC | 113 ms
41,044 KB |
testcase_15 | AC | 104 ms
40,004 KB |
testcase_16 | AC | 105 ms
40,080 KB |
testcase_17 | AC | 115 ms
41,100 KB |
testcase_18 | AC | 114 ms
39,608 KB |
testcase_19 | AC | 106 ms
39,844 KB |
testcase_20 | AC | 118 ms
41,084 KB |
testcase_21 | AC | 114 ms
41,048 KB |
testcase_22 | AC | 133 ms
41,260 KB |
testcase_23 | AC | 138 ms
41,408 KB |
testcase_24 | AC | 145 ms
41,320 KB |
testcase_25 | AC | 140 ms
40,956 KB |
testcase_26 | AC | 139 ms
41,284 KB |
testcase_27 | AC | 143 ms
41,232 KB |
testcase_28 | AC | 147 ms
41,308 KB |
ソースコード
import java.util.Scanner; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); char N[] = new char[10002], M[] = new char[10002]; N = sc.next().toCharArray(); M = sc.next().toCharArray(); sc.close(); int N_length = N.length, M_length = M.length, tmp; if (M[0] == '0') System.out.print(1); else if (N[N_length - 1] == '0') System.out.print(0); else { if (N[N_length - 1] == '1' || N[N_length - 1] == '5' || N[N_length - 1] == '6') System.out.print(N[N_length - 1]); else if (N[N_length - 1] == '4' || N[N_length - 1] == '9') { if ((M[M_length - 1] - '0') % 2 == 0) { if (N[N_length - 1] == '4') System.out.print(6); else System.out.print(1); } else System.out.print(N[N_length - 1]); } else { if (M_length == 1) tmp = M[0] - '0'; else tmp = 10 * (M[M_length - 2] - '0') + M[M_length - 1] - '0'; if (N[N_length - 1] == '2') { if (tmp % 4 == 1) System.out.print(2); else if (tmp % 4 == 2) System.out.print(4); else if (tmp % 4 == 3) System.out.print(8); else System.out.print(6); } else if (N[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[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); } } } } }