結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,828 KB
testcase_01 AC 95 ms
52,408 KB
testcase_02 AC 93 ms
52,464 KB
testcase_03 AC 112 ms
53,892 KB
testcase_04 AC 105 ms
53,348 KB
testcase_05 AC 98 ms
52,748 KB
testcase_06 AC 112 ms
54,308 KB
testcase_07 AC 119 ms
54,072 KB
testcase_08 AC 118 ms
53,836 KB
testcase_09 AC 101 ms
52,976 KB
testcase_10 AC 95 ms
52,384 KB
testcase_11 AC 108 ms
53,564 KB
testcase_12 AC 121 ms
54,100 KB
testcase_13 AC 113 ms
53,792 KB
testcase_14 AC 109 ms
53,808 KB
testcase_15 AC 114 ms
54,004 KB
testcase_16 AC 112 ms
53,832 KB
testcase_17 AC 103 ms
54,376 KB
testcase_18 AC 109 ms
54,164 KB
testcase_19 AC 102 ms
52,700 KB
testcase_20 AC 115 ms
54,292 KB
testcase_21 AC 112 ms
54,000 KB
testcase_22 AC 111 ms
54,240 KB
testcase_23 AC 111 ms
54,040 KB
testcase_24 AC 103 ms
53,164 KB
testcase_25 AC 100 ms
53,796 KB
testcase_26 AC 108 ms
53,460 KB
testcase_27 AC 98 ms
52,516 KB
testcase_28 AC 108 ms
52,780 KB
testcase_29 AC 109 ms
53,684 KB
testcase_30 AC 109 ms
54,132 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