結果

問題 No.167 N^M mod 10
ユーザー kou6839kou6839
提出日時 2015-03-20 00:16:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 488 bytes
コンパイル時間 2,216 ms
コンパイル使用メモリ 76,472 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-09-22 01:08:42
合計ジャッジ時間 7,351 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,292 KB
testcase_01 AC 129 ms
40,896 KB
testcase_02 AC 163 ms
41,324 KB
testcase_03 AC 148 ms
40,988 KB
testcase_04 AC 167 ms
41,140 KB
testcase_05 AC 131 ms
40,720 KB
testcase_06 AC 131 ms
40,928 KB
testcase_07 AC 118 ms
39,852 KB
testcase_08 AC 133 ms
40,892 KB
testcase_09 AC 133 ms
41,328 KB
testcase_10 AC 118 ms
40,068 KB
testcase_11 AC 117 ms
39,664 KB
testcase_12 AC 129 ms
41,188 KB
testcase_13 AC 133 ms
40,924 KB
testcase_14 AC 131 ms
40,980 KB
testcase_15 AC 130 ms
40,976 KB
testcase_16 AC 128 ms
41,104 KB
testcase_17 AC 128 ms
40,924 KB
testcase_18 AC 114 ms
39,664 KB
testcase_19 AC 128 ms
40,804 KB
testcase_20 AC 128 ms
41,180 KB
testcase_21 AC 127 ms
40,900 KB
testcase_22 AC 148 ms
41,316 KB
testcase_23 AC 146 ms
41,104 KB
testcase_24 AC 164 ms
41,004 KB
testcase_25 AC 150 ms
41,180 KB
testcase_26 AC 146 ms
41,228 KB
testcase_27 AC 163 ms
41,160 KB
testcase_28 AC 162 ms
40,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main {
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		String a=sc.next();
		String b = sc.next();
		long c = Long.parseLong(a.charAt(a.length()-1)+"");
		long aa = 0;
		if(b.length()>1){
			aa = Long.parseLong(b.substring(b.length()-2, b.length()));
			if(aa==0)aa=100;
		}else {
			aa=Long.parseLong(b.charAt(b.length()-1)+"");
			
		}
		
		aa-=1;
		aa%=4;
		aa++;
		System.out.println((int)(Math.pow(c, aa)%10));
	}
}
0