結果

問題 No.25 有限小数
ユーザー scachescache
提出日時 2014-11-15 11:05:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 943 bytes
コンパイル時間 3,684 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 55,932 KB
最終ジャッジ日時 2024-11-15 21:07:03
合計ジャッジ時間 8,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,576 KB
testcase_01 AC 137 ms
54,032 KB
testcase_02 AC 135 ms
53,572 KB
testcase_03 AC 134 ms
54,024 KB
testcase_04 AC 133 ms
53,712 KB
testcase_05 AC 137 ms
53,720 KB
testcase_06 AC 133 ms
54,096 KB
testcase_07 AC 134 ms
54,084 KB
testcase_08 AC 133 ms
53,708 KB
testcase_09 AC 132 ms
53,880 KB
testcase_10 AC 137 ms
53,868 KB
testcase_11 AC 130 ms
53,528 KB
testcase_12 AC 118 ms
53,016 KB
testcase_13 AC 132 ms
53,900 KB
testcase_14 AC 141 ms
53,964 KB
testcase_15 AC 135 ms
53,756 KB
testcase_16 AC 133 ms
53,752 KB
testcase_17 AC 133 ms
53,704 KB
testcase_18 AC 133 ms
54,280 KB
testcase_19 AC 133 ms
53,820 KB
testcase_20 AC 132 ms
53,828 KB
testcase_21 AC 135 ms
53,788 KB
testcase_22 AC 135 ms
53,908 KB
testcase_23 AC 137 ms
54,000 KB
testcase_24 AC 134 ms
53,672 KB
testcase_25 AC 133 ms
55,932 KB
testcase_26 AC 142 ms
53,688 KB
testcase_27 AC 135 ms
53,732 KB
testcase_28 AC 137 ms
53,904 KB
testcase_29 AC 137 ms
53,784 KB
testcase_30 AC 135 ms
53,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Scanner;

/**
 * yukicoder no.25
 * @author scache
 *
 */
public class FiniteDecimal {
	public static void main(String[] args) {
		FiniteDecimal p = new FiniteDecimal();
	}

	public FiniteDecimal() {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long m = sc.nextLong();
		
		System.out.println(solve(n, m));
	
	}

	public int solve(long n, long m) {
		long g = gcd(n, m);
		m /= g;
		n /= g;
		
		while(n%10 == 0)
			n /= 10;
		
//		System.out.println(n +" " + n +" "+m);
		long res = n % 10;

		
		while(m%10==0)
			m /= 10;
		
		while(m%2==0){
			res *= 5;
			res %= 1000000000000000000L;
			m /= 2;
		}
		while(m%5==0){
			res *= 2;
			res %= 1000000000000000000L;
			m /= 5;
		}
			
		if(m==1)
			return (int)(res%10);
		else
			return -1;
	}
	
	private long gcd(long a, long b){
		if(b==0)
			return a;
		else
			return gcd(b, a%b);
	}
}
0