結果

問題 No.25 有限小数
ユーザー KilisameKilisame
提出日時 2016-06-16 15:11:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,017 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 75,976 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-10-09 16:33:01
合計ジャッジ時間 7,774 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,388 KB
testcase_01 AC 134 ms
54,172 KB
testcase_02 AC 129 ms
53,992 KB
testcase_03 AC 130 ms
54,516 KB
testcase_04 WA -
testcase_05 AC 136 ms
54,128 KB
testcase_06 AC 138 ms
54,416 KB
testcase_07 AC 134 ms
54,140 KB
testcase_08 AC 134 ms
54,332 KB
testcase_09 AC 136 ms
54,212 KB
testcase_10 AC 134 ms
54,256 KB
testcase_11 AC 132 ms
53,972 KB
testcase_12 AC 135 ms
54,092 KB
testcase_13 AC 135 ms
54,088 KB
testcase_14 AC 136 ms
54,292 KB
testcase_15 AC 135 ms
54,384 KB
testcase_16 AC 133 ms
54,364 KB
testcase_17 AC 138 ms
54,128 KB
testcase_18 AC 133 ms
54,416 KB
testcase_19 AC 132 ms
54,232 KB
testcase_20 AC 134 ms
54,020 KB
testcase_21 AC 131 ms
54,076 KB
testcase_22 AC 133 ms
54,388 KB
testcase_23 AC 135 ms
54,312 KB
testcase_24 AC 136 ms
54,180 KB
testcase_25 AC 132 ms
53,968 KB
testcase_26 AC 140 ms
54,164 KB
testcase_27 AC 135 ms
53,920 KB
testcase_28 AC 132 ms
54,152 KB
testcase_29 AC 134 ms
54,024 KB
testcase_30 AC 142 ms
54,188 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();
            char[] charArray = resultStr.toCharArray();
            for (int i = charArray.length - 1; i >= 0; i--) {
                if (charArray[i] != '0') {
                    System.out.println(charArray[i]);
                    break;
                }
            }
        }
    }
}
0