結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,828 KB
testcase_01 AC 107 ms
40,024 KB
testcase_02 AC 111 ms
41,476 KB
testcase_03 AC 113 ms
41,336 KB
testcase_04 AC 115 ms
41,540 KB
testcase_05 AC 106 ms
40,352 KB
testcase_06 AC 112 ms
41,308 KB
testcase_07 AC 108 ms
40,204 KB
testcase_08 AC 112 ms
41,356 KB
testcase_09 AC 102 ms
40,408 KB
testcase_10 AC 114 ms
41,572 KB
testcase_11 AC 112 ms
41,196 KB
testcase_12 AC 108 ms
40,468 KB
testcase_13 AC 108 ms
40,436 KB
testcase_14 AC 98 ms
40,140 KB
testcase_15 AC 107 ms
40,688 KB
testcase_16 AC 99 ms
40,000 KB
testcase_17 AC 113 ms
41,340 KB
testcase_18 AC 123 ms
40,416 KB
testcase_19 AC 113 ms
40,040 KB
testcase_20 AC 111 ms
40,060 KB
testcase_21 AC 116 ms
40,700 KB
testcase_22 AC 113 ms
41,308 KB
testcase_23 AC 114 ms
41,120 KB
testcase_24 AC 114 ms
41,564 KB
testcase_25 AC 103 ms
40,160 KB
testcase_26 AC 115 ms
40,732 KB
testcase_27 AC 105 ms
40,072 KB
testcase_28 AC 101 ms
40,156 KB
testcase_29 AC 113 ms
41,116 KB
testcase_30 AC 97 ms
39,772 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