結果

問題 No.167 N^M mod 10
ユーザー mits58mits58
提出日時 2016-07-09 17:23:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 53,984 KB
最終ジャッジ日時 2024-10-13 09:37:49
合計ジャッジ時間 6,647 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,004 KB
testcase_01 AC 111 ms
40,980 KB
testcase_02 AC 142 ms
41,248 KB
testcase_03 AC 130 ms
41,396 KB
testcase_04 AC 127 ms
41,152 KB
testcase_05 AC 99 ms
40,728 KB
testcase_06 AC 98 ms
41,448 KB
testcase_07 AC 114 ms
41,324 KB
testcase_08 AC 114 ms
41,468 KB
testcase_09 AC 115 ms
41,136 KB
testcase_10 AC 118 ms
41,084 KB
testcase_11 AC 119 ms
41,464 KB
testcase_12 AC 104 ms
40,212 KB
testcase_13 AC 101 ms
39,876 KB
testcase_14 WA -
testcase_15 AC 94 ms
41,224 KB
testcase_16 AC 115 ms
41,280 KB
testcase_17 AC 109 ms
41,368 KB
testcase_18 AC 117 ms
41,308 KB
testcase_19 AC 102 ms
40,004 KB
testcase_20 AC 113 ms
41,076 KB
testcase_21 AC 101 ms
41,572 KB
testcase_22 AC 145 ms
41,364 KB
testcase_23 AC 132 ms
40,872 KB
testcase_24 AC 132 ms
41,312 KB
testcase_25 AC 134 ms
41,184 KB
testcase_26 WA -
testcase_27 AC 130 ms
41,300 KB
testcase_28 AC 127 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			String s1=sc.next();
			String s2=sc.next();
			int n=s1.charAt(s1.length()-1)-'0';
			int m=0;
			if(s2.length()<3) m=Integer.valueOf(s2);
			else m=Integer.valueOf(s2.substring(s2.length()-2,s2.length()));
			m%=4; m+=4;
			int ans=1;
			for(int i=1;i<=m;i++) ans*=n;
			System.out.println(ans%10);
		}
	}
}
0