結果

問題 No.167 N^M mod 10
ユーザー uafr_csuafr_cs
提出日時 2015-06-09 02:44:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 851 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 78,540 KB
実行使用メモリ 56,144 KB
最終ジャッジ日時 2024-07-06 14:58:53
合計ジャッジ時間 7,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,192 KB
testcase_01 AC 128 ms
54,104 KB
testcase_02 AC 164 ms
54,248 KB
testcase_03 AC 162 ms
54,216 KB
testcase_04 AC 166 ms
54,248 KB
testcase_05 AC 128 ms
53,876 KB
testcase_06 AC 128 ms
54,144 KB
testcase_07 AC 127 ms
53,888 KB
testcase_08 AC 137 ms
53,988 KB
testcase_09 AC 130 ms
54,164 KB
testcase_10 AC 134 ms
54,112 KB
testcase_11 AC 135 ms
54,012 KB
testcase_12 AC 131 ms
54,048 KB
testcase_13 AC 131 ms
54,028 KB
testcase_14 WA -
testcase_15 AC 128 ms
54,048 KB
testcase_16 AC 129 ms
53,996 KB
testcase_17 AC 128 ms
53,868 KB
testcase_18 AC 128 ms
53,988 KB
testcase_19 AC 129 ms
54,036 KB
testcase_20 AC 128 ms
56,144 KB
testcase_21 AC 129 ms
54,164 KB
testcase_22 AC 165 ms
54,236 KB
testcase_23 AC 163 ms
54,516 KB
testcase_24 AC 161 ms
54,140 KB
testcase_25 AC 159 ms
54,096 KB
testcase_26 WA -
testcase_27 AC 167 ms
54,480 KB
testcase_28 AC 163 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		String N = sc.next();
		String M = sc.next();
		
		int[][] answers = {
				{0},
				{1},
				{2, 4, 8, 6},
				{3, 9, 7, 1},
				{4, 6},
				{5},
				{6},
				{7, 9, 3, 1},
				{8, 4, 2, 6},
				{9, 1},
		};
		
		final int N_mod_10 = Integer.parseInt(N.substring(N.length() - 1));
		final int M_mod_100 = Integer.parseInt(M.substring(Math.max(0, M.length() - 2)));
		
		//System.out.println(N_mod_10 + ":" + M_mod_100);
		System.out.println(answers[N_mod_10]["0".equals(M) ? 0 : (answers[N_mod_10].length + M_mod_100 - 1) % answers[N_mod_10].length]);
		
	}
	
}
0