結果

問題 No.25 有限小数
ユーザー uafr_cs
提出日時 2017-11-11 10:10:55
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 974 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 116,844 KB
最終ジャッジ日時 2024-11-24 18:52:52
合計ジャッジ時間 49,176 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 TLE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		BigInteger N = new BigInteger(sc.next());
		BigInteger M = new BigInteger(sc.next());
		
		BigInteger answer = BigInteger.ZERO;
		
		HashSet<BigInteger> already = new HashSet<BigInteger>();
		
		while(true){
			//System.out.println(N + "/" + M);
			answer = answer.multiply(BigInteger.TEN);
			answer = answer.add(N.divide(M));
			
			if(N.mod(M) == BigInteger.ZERO){
				break;
			}
			
			final BigInteger mod = N.mod(M);
			if(already.contains(mod)){
				System.out.println(-1);
				return;
			}
			
			already.add(mod);
			N = mod.multiply(BigInteger.TEN);
		}
		
		final String output = answer.toString().replace("0", "");
		System.out.println(output.charAt(output.length() - 1));
	}
}
0