結果

問題 No.25 有限小数
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-09 23:18:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 1,179 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 77,952 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-11-28 20:17:36
合計ジャッジ時間 7,631 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,616 KB
testcase_01 AC 132 ms
41,516 KB
testcase_02 AC 136 ms
41,364 KB
testcase_03 AC 132 ms
41,368 KB
testcase_04 AC 139 ms
41,488 KB
testcase_05 AC 136 ms
41,540 KB
testcase_06 AC 136 ms
41,744 KB
testcase_07 AC 134 ms
41,288 KB
testcase_08 AC 137 ms
41,688 KB
testcase_09 AC 137 ms
41,356 KB
testcase_10 AC 136 ms
41,440 KB
testcase_11 AC 132 ms
41,408 KB
testcase_12 AC 137 ms
41,744 KB
testcase_13 AC 137 ms
41,664 KB
testcase_14 AC 136 ms
41,764 KB
testcase_15 AC 137 ms
41,484 KB
testcase_16 AC 137 ms
41,648 KB
testcase_17 AC 139 ms
41,492 KB
testcase_18 AC 137 ms
41,608 KB
testcase_19 AC 133 ms
41,312 KB
testcase_20 AC 137 ms
41,328 KB
testcase_21 AC 135 ms
41,176 KB
testcase_22 AC 140 ms
41,432 KB
testcase_23 AC 137 ms
41,500 KB
testcase_24 AC 137 ms
41,636 KB
testcase_25 AC 136 ms
41,156 KB
testcase_26 AC 134 ms
41,352 KB
testcase_27 AC 135 ms
41,416 KB
testcase_28 AC 136 ms
41,360 KB
testcase_29 AC 135 ms
41,196 KB
testcase_30 AC 135 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 = gcd(N,M);
        N/=gcd;
        M/=gcd;
        long ans = ans(N,M);
        System.out.println(ans);
    }
    static long gcd(long x, long y){
        while(true){
            long z=x%y;
            if(z==0){break;}
            x=y;
            y=z;
        }
        return y;
    }
    static int ans(long N, long M){
        long t=M;
        while(t%2==0){
            t/=2;
        }
        while(t%5==0){
            t/=5;
        }
        int r=-1;
        if(t==1){
            BigDecimal x = new BigDecimal(N);
            BigDecimal y = new BigDecimal(M);
            BigDecimal z = x.divide(y, 1000, BigDecimal.ROUND_UNNECESSARY);
            String w = z.toPlainString();
            for(int i=w.length()-1; i>=0; i--){
                int A = w.charAt(i);
                if(A!='0'&&A!='.'){
                    r=w.charAt(i)-'0';
                    break;
                }
            }
        }
        return r;
    }
}
0