結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 137 ms
41,240 KB
testcase_03 AC 143 ms
41,112 KB
testcase_04 WA -
testcase_05 AC 115 ms
41,260 KB
testcase_06 WA -
testcase_07 AC 102 ms
40,004 KB
testcase_08 AC 113 ms
41,248 KB
testcase_09 AC 101 ms
41,172 KB
testcase_10 AC 112 ms
41,196 KB
testcase_11 AC 113 ms
41,468 KB
testcase_12 AC 111 ms
41,120 KB
testcase_13 AC 113 ms
41,224 KB
testcase_14 AC 101 ms
40,200 KB
testcase_15 AC 112 ms
41,248 KB
testcase_16 AC 109 ms
41,436 KB
testcase_17 AC 104 ms
41,096 KB
testcase_18 AC 108 ms
40,896 KB
testcase_19 AC 101 ms
40,132 KB
testcase_20 AC 114 ms
40,908 KB
testcase_21 AC 113 ms
41,156 KB
testcase_22 AC 131 ms
41,100 KB
testcase_23 AC 136 ms
40,992 KB
testcase_24 AC 133 ms
41,252 KB
testcase_25 AC 144 ms
41,376 KB
testcase_26 AC 131 ms
41,204 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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()));
			if(m==0) System.out.println(1);
			else{
				m%=4; m+=4;
				int ans=1;
				for(int i=1;i<=m;i++) ans*=n;
				System.out.println(ans%10);
			}
		}
	}
}
0