結果

問題 No.25 有限小数
ユーザー tentententen
提出日時 2020-10-22 17:00:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 1,155 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 76,888 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-07-21 09:22:29
合計ジャッジ時間 5,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,524 KB
testcase_01 AC 114 ms
40,976 KB
testcase_02 AC 99 ms
39,976 KB
testcase_03 AC 107 ms
41,036 KB
testcase_04 AC 112 ms
40,988 KB
testcase_05 AC 107 ms
41,004 KB
testcase_06 AC 99 ms
40,056 KB
testcase_07 AC 106 ms
40,652 KB
testcase_08 AC 113 ms
40,888 KB
testcase_09 AC 107 ms
40,668 KB
testcase_10 AC 98 ms
39,976 KB
testcase_11 AC 99 ms
40,048 KB
testcase_12 AC 109 ms
40,796 KB
testcase_13 AC 94 ms
39,588 KB
testcase_14 AC 97 ms
39,916 KB
testcase_15 AC 101 ms
39,960 KB
testcase_16 AC 109 ms
41,044 KB
testcase_17 AC 110 ms
40,636 KB
testcase_18 AC 100 ms
40,300 KB
testcase_19 AC 109 ms
40,792 KB
testcase_20 AC 106 ms
40,676 KB
testcase_21 AC 106 ms
40,968 KB
testcase_22 AC 94 ms
39,916 KB
testcase_23 AC 98 ms
39,812 KB
testcase_24 AC 98 ms
40,088 KB
testcase_25 AC 95 ms
39,720 KB
testcase_26 AC 107 ms
40,852 KB
testcase_27 AC 111 ms
41,344 KB
testcase_28 AC 106 ms
40,532 KB
testcase_29 AC 107 ms
41,036 KB
testcase_30 AC 110 ms
40,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        long m = sc.nextLong();
        long gcd = getGCD(n, m);
        n /= gcd;
        m /= gcd;
        long x = m;
        int twoCount = 0;
        while (x % 2 == 0){
            x /= 2;
            twoCount++;
        }
        int fiveCount = 0;
        while (x % 5 == 0) {
            x /= 5;
            fiveCount++;
        }
        if (x != 1) {
            System.out.println(-1);
            return;
        }
        while (n % 10 == 0) {
            n /= 10;
        }
        n %= 10;
        if (twoCount > fiveCount) {
            System.out.println(5);
        } else {
            fiveCount -= twoCount;
            for (int i = 0; i < fiveCount; i++) {
                n *= 10;
                n /= 5;
                n %= 10;
            }
            System.out.println(n);
        }
     }
     
     static long getGCD(long x, long y) {
         if (x % y == 0) {
             return y;
         } else {
             return getGCD(y, x % y);
         }
     }
}
0