結果

問題 No.25 有限小数
ユーザー htensaihtensai
提出日時 2020-01-15 09:13:26
言語 Java
(openjdk 23)
結果
MLE  
実行時間 -
コード長 964 bytes
コンパイル時間 3,602 ms
コンパイル使用メモリ 76,592 KB
実行使用メモリ 700,488 KB
最終ジャッジ日時 2024-12-31 00:48:31
合計ジャッジ時間 49,864 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
61,192 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 AC 164 ms
60,892 KB
testcase_07 MLE -
testcase_08 AC 122 ms
54,012 KB
testcase_09 AC 112 ms
53,852 KB
testcase_10 AC 117 ms
54,280 KB
testcase_11 AC 105 ms
53,976 KB
testcase_12 AC 118 ms
54,324 KB
testcase_13 AC 116 ms
54,240 KB
testcase_14 AC 119 ms
54,112 KB
testcase_15 AC 117 ms
53,848 KB
testcase_16 AC 119 ms
54,216 KB
testcase_17 AC 116 ms
53,924 KB
testcase_18 AC 107 ms
53,028 KB
testcase_19 TLE -
testcase_20 AC 117 ms
54,160 KB
testcase_21 AC 119 ms
54,112 KB
testcase_22 AC 117 ms
54,040 KB
testcase_23 AC 116 ms
53,900 KB
testcase_24 AC 119 ms
53,860 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        BigInteger n = new BigInteger(sc.next());
        BigInteger m = new BigInteger(sc.next());
        HashSet<BigInteger> set = new HashSet<>();
        while (true) {
            BigInteger mod = n.mod(m);
            if (mod.equals(BigInteger.ZERO)) {
                System.out.println(getLastNum(n.divide(m)));
                return;
            }
            n = mod;
            if (set.contains(n)) {
                System.out.println(-1);
                return;
            }
            set.add(n);
            n = n.multiply(BigInteger.TEN);
        }
    }
    
    static long getLastNum(BigInteger b) {
        long x = b.longValue();
        while (x > 0) {
            if (x % 10 != 0) {
                return x % 10;
            }
            x /= 10;
        }
        return 0;
    }
}
0