結果

問題 No.25 有限小数
ユーザー uafr_csuafr_cs
提出日時 2017-11-11 10:10:55
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 974 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 116,844 KB
最終ジャッジ日時 2024-11-24 18:52:52
合計ジャッジ時間 49,176 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
46,376 KB
testcase_01 AC 127 ms
116,844 KB
testcase_02 AC 128 ms
46,316 KB
testcase_03 AC 128 ms
114,884 KB
testcase_04 AC 127 ms
46,604 KB
testcase_05 AC 127 ms
115,000 KB
testcase_06 AC 128 ms
46,276 KB
testcase_07 AC 130 ms
112,748 KB
testcase_08 AC 117 ms
45,264 KB
testcase_09 AC 131 ms
113,212 KB
testcase_10 AC 130 ms
46,420 KB
testcase_11 AC 131 ms
115,696 KB
testcase_12 AC 132 ms
46,628 KB
testcase_13 AC 133 ms
41,472 KB
testcase_14 AC 132 ms
41,248 KB
testcase_15 AC 116 ms
40,216 KB
testcase_16 AC 134 ms
41,092 KB
testcase_17 AC 129 ms
41,236 KB
testcase_18 AC 120 ms
40,172 KB
testcase_19 TLE -
testcase_20 AC 132 ms
40,856 KB
testcase_21 AC 131 ms
41,216 KB
testcase_22 AC 130 ms
41,148 KB
testcase_23 AC 130 ms
41,032 KB
testcase_24 AC 130 ms
41,244 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

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