結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 162 ms
54,320 KB
testcase_03 AC 163 ms
53,944 KB
testcase_04 WA -
testcase_05 AC 129 ms
54,152 KB
testcase_06 WA -
testcase_07 AC 130 ms
54,252 KB
testcase_08 AC 132 ms
54,104 KB
testcase_09 AC 132 ms
54,132 KB
testcase_10 AC 130 ms
53,964 KB
testcase_11 AC 128 ms
54,008 KB
testcase_12 AC 129 ms
53,760 KB
testcase_13 AC 129 ms
53,936 KB
testcase_14 AC 128 ms
54,348 KB
testcase_15 AC 128 ms
54,112 KB
testcase_16 AC 132 ms
53,880 KB
testcase_17 AC 128 ms
53,992 KB
testcase_18 AC 129 ms
53,996 KB
testcase_19 AC 131 ms
54,152 KB
testcase_20 AC 131 ms
53,932 KB
testcase_21 AC 131 ms
54,212 KB
testcase_22 AC 166 ms
54,136 KB
testcase_23 AC 166 ms
54,224 KB
testcase_24 AC 163 ms
53,936 KB
testcase_25 AC 160 ms
54,160 KB
testcase_26 AC 144 ms
53,924 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 = Long.parseLong(a.charAt(a.length()-1)+"");
		long aa = 0;
		if(b.length()>1){
			aa = Long.parseLong(b.substring(b.length()-2, b.length()));
		}else{
			aa=Long.parseLong(b.charAt(b.length()-1)+"");
		}
		aa-=1;
		aa%=4;
		aa++;
		System.out.println((int)(Math.pow(c, aa)%10));
	}
}
0