結果

問題 No.167 N^M mod 10
ユーザー mits58mits58
提出日時 2016-07-09 17:22:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 77,680 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-10-13 09:37:26
合計ジャッジ時間 7,316 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,180 KB
testcase_01 AC 115 ms
41,168 KB
testcase_02 AC 143 ms
41,576 KB
testcase_03 AC 136 ms
41,312 KB
testcase_04 AC 152 ms
41,332 KB
testcase_05 AC 117 ms
41,124 KB
testcase_06 AC 115 ms
40,952 KB
testcase_07 AC 106 ms
39,908 KB
testcase_08 AC 117 ms
40,992 KB
testcase_09 AC 118 ms
41,564 KB
testcase_10 WA -
testcase_11 AC 117 ms
41,040 KB
testcase_12 AC 117 ms
41,336 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 122 ms
41,284 KB
testcase_16 AC 116 ms
40,948 KB
testcase_17 AC 119 ms
41,516 KB
testcase_18 AC 118 ms
41,076 KB
testcase_19 AC 120 ms
41,284 KB
testcase_20 AC 104 ms
40,232 KB
testcase_21 AC 116 ms
41,068 KB
testcase_22 WA -
testcase_23 AC 149 ms
41,384 KB
testcase_24 AC 152 ms
41,156 KB
testcase_25 AC 150 ms
41,336 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 142 ms
41,288 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;
			int ans=n;
			for(int i=1;i<m;i++) ans*=n;
			System.out.println(ans%10);
		}
	}
}
0