結果

問題 No.25 有限小数
ユーザー リチウムリチウム
提出日時 2014-11-17 21:41:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 1,038 bytes
コンパイル時間 2,437 ms
コンパイル使用メモリ 77,376 KB
実行使用メモリ 55,736 KB
最終ジャッジ日時 2024-11-15 21:07:15
合計ジャッジ時間 7,583 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
53,736 KB
testcase_01 AC 136 ms
53,720 KB
testcase_02 AC 137 ms
53,768 KB
testcase_03 AC 137 ms
53,948 KB
testcase_04 AC 135 ms
53,556 KB
testcase_05 AC 139 ms
53,856 KB
testcase_06 AC 139 ms
53,864 KB
testcase_07 AC 136 ms
53,916 KB
testcase_08 AC 137 ms
53,936 KB
testcase_09 AC 136 ms
54,156 KB
testcase_10 AC 135 ms
54,020 KB
testcase_11 AC 137 ms
53,824 KB
testcase_12 AC 136 ms
53,648 KB
testcase_13 AC 136 ms
53,948 KB
testcase_14 AC 135 ms
53,940 KB
testcase_15 AC 141 ms
53,924 KB
testcase_16 AC 135 ms
53,904 KB
testcase_17 AC 137 ms
53,872 KB
testcase_18 AC 138 ms
54,024 KB
testcase_19 AC 136 ms
53,808 KB
testcase_20 AC 138 ms
53,888 KB
testcase_21 AC 137 ms
53,844 KB
testcase_22 AC 132 ms
53,808 KB
testcase_23 AC 135 ms
54,044 KB
testcase_24 AC 137 ms
55,736 KB
testcase_25 AC 136 ms
53,796 KB
testcase_26 AC 138 ms
53,712 KB
testcase_27 AC 137 ms
53,756 KB
testcase_28 AC 137 ms
54,104 KB
testcase_29 AC 139 ms
53,760 KB
testcase_30 AC 136 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static long GCD(long a, long b) { //最大公約数
		if (a % b == 0 || b % a == 0) {
			return Math.min(a, b);
		} else {
			return GCD(a % b, b % a);
		}
	}
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong();
		long m=sc.nextLong();
		long g=GCD(n,m);
		n/=g;
		m/=g;
		if(m==1){
			while(n%10==0){
				n/=10;
			}
			System.out.println(n%10);
			return;
		}
		int two=0;
		int five=0;
		boolean next=false;
		long c=m;
		do{
			next=false;
			if(c%2==0){
				c/=2;
				two++;
				next=true;
			}
			if(c%5==0){
				c/=5;
				five++;
				next=true;
			}
		}while(next);
		
		int N=(int)(n%10);
		
		if(c!=1 || (two==0 && five==0)){
			System.out.println(-1);
			return;
		}
		else if(two>0 && five>0)System.out.println(N);
		
		else if(two>0)System.out.println(5);
		
		else{
			int x=0;
			while(x<five){
				N*=2;
				N%=10;
				x++;
			}
			System.out.println(N);
		}
		
		
	}}
0