結果

問題 No.167 N^M mod 10
ユーザー kou6839kou6839
提出日時 2015-03-20 00:04:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 466 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 77,856 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-06-28 23:29:58
合計ジャッジ時間 7,441 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 152 ms
54,008 KB
testcase_03 AC 153 ms
54,448 KB
testcase_04 WA -
testcase_05 AC 125 ms
53,916 KB
testcase_06 WA -
testcase_07 AC 112 ms
52,860 KB
testcase_08 AC 126 ms
54,292 KB
testcase_09 AC 125 ms
53,808 KB
testcase_10 AC 124 ms
53,996 KB
testcase_11 AC 129 ms
53,888 KB
testcase_12 AC 127 ms
54,124 KB
testcase_13 AC 116 ms
53,020 KB
testcase_14 AC 127 ms
53,916 KB
testcase_15 AC 128 ms
54,088 KB
testcase_16 AC 137 ms
54,200 KB
testcase_17 AC 129 ms
54,200 KB
testcase_18 AC 128 ms
54,412 KB
testcase_19 AC 127 ms
54,056 KB
testcase_20 AC 127 ms
54,188 KB
testcase_21 AC 112 ms
52,808 KB
testcase_22 AC 161 ms
53,916 KB
testcase_23 AC 156 ms
54,212 KB
testcase_24 AC 157 ms
54,116 KB
testcase_25 AC 157 ms
54,256 KB
testcase_26 AC 141 ms
54,272 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = Integer.parseInt(a.charAt(a.length()-1)+"");
		long aa = 0;
		if(b.length()>1){
			aa = Integer.parseInt(b.substring(b.length()-2, b.length()));
		}else{
			aa=Integer.parseInt(b.charAt(b.length()-1)+"");
		}
		aa-=1;
		aa%=4;
		aa++;
		System.out.println((int)(Math.pow(c, aa)%10));
	}
}
0