結果

問題 No.25 有限小数
ユーザー KilisameKilisame
提出日時 2016-06-16 15:20:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 1,150 bytes
コンパイル時間 2,988 ms
コンパイル使用メモリ 78,520 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-11-15 21:16:50
合計ジャッジ時間 6,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,864 KB
testcase_01 AC 124 ms
53,856 KB
testcase_02 AC 122 ms
53,964 KB
testcase_03 AC 123 ms
54,016 KB
testcase_04 AC 131 ms
54,272 KB
testcase_05 AC 126 ms
54,260 KB
testcase_06 AC 125 ms
53,984 KB
testcase_07 AC 127 ms
53,776 KB
testcase_08 AC 128 ms
54,300 KB
testcase_09 AC 127 ms
54,336 KB
testcase_10 AC 126 ms
54,004 KB
testcase_11 AC 122 ms
53,968 KB
testcase_12 AC 126 ms
54,116 KB
testcase_13 AC 125 ms
53,780 KB
testcase_14 AC 129 ms
53,836 KB
testcase_15 AC 125 ms
54,064 KB
testcase_16 AC 127 ms
54,236 KB
testcase_17 AC 136 ms
53,948 KB
testcase_18 AC 129 ms
53,920 KB
testcase_19 AC 127 ms
54,068 KB
testcase_20 AC 128 ms
53,668 KB
testcase_21 AC 126 ms
53,600 KB
testcase_22 AC 122 ms
54,188 KB
testcase_23 AC 127 ms
53,960 KB
testcase_24 AC 126 ms
53,912 KB
testcase_25 AC 123 ms
53,932 KB
testcase_26 AC 113 ms
52,816 KB
testcase_27 AC 124 ms
54,088 KB
testcase_28 AC 126 ms
53,964 KB
testcase_29 AC 126 ms
53,920 KB
testcase_30 AC 123 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.util.Scanner;

public class Main {

    private static long n;

    private static long m;

    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        n = Long.parseLong(cin.next());
        m = Long.parseLong(cin.next());
        cin.close();
        calculate();
    }

    private static void calculate() {
        long target = m;
        while (target % 2 == 0) {
            target /= 2;
        }
        while (target % 5 == 0) {
            target /= 5;
        }
        if (n % target != 0) {
            System.out.println(-1);
        } else {
            String resultStr = new BigDecimal(n).divide(new BigDecimal(m)).toString();
            if (resultStr.contains("E")) {
                resultStr = resultStr.substring(0, resultStr.indexOf("E"));
            }
            char[] charArray = resultStr.toCharArray();
            for (int i = charArray.length - 1; i >= 0; i--) {
                if (charArray[i] != '0') {
                    System.out.println(charArray[i]);
                    break;
                }
            }
        }
    }
}
0