結果

問題 No.25 有限小数
ユーザー GrenacheGrenache
提出日時 2016-03-11 20:33:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 1,058 bytes
コンパイル時間 3,302 ms
コンパイル使用メモリ 77,320 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-11-15 21:15:58
合計ジャッジ時間 8,125 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,620 KB
testcase_01 AC 125 ms
41,440 KB
testcase_02 AC 124 ms
41,444 KB
testcase_03 AC 126 ms
39,968 KB
testcase_04 AC 125 ms
41,244 KB
testcase_05 AC 123 ms
41,064 KB
testcase_06 AC 127 ms
41,112 KB
testcase_07 AC 127 ms
41,444 KB
testcase_08 AC 126 ms
41,232 KB
testcase_09 AC 127 ms
41,304 KB
testcase_10 AC 124 ms
41,184 KB
testcase_11 AC 126 ms
41,560 KB
testcase_12 AC 125 ms
41,096 KB
testcase_13 AC 123 ms
41,172 KB
testcase_14 AC 127 ms
41,100 KB
testcase_15 AC 117 ms
40,556 KB
testcase_16 AC 125 ms
41,200 KB
testcase_17 AC 114 ms
40,216 KB
testcase_18 AC 128 ms
41,292 KB
testcase_19 AC 126 ms
41,088 KB
testcase_20 AC 126 ms
41,392 KB
testcase_21 AC 114 ms
40,096 KB
testcase_22 AC 127 ms
41,556 KB
testcase_23 AC 127 ms
41,308 KB
testcase_24 AC 133 ms
41,248 KB
testcase_25 AC 114 ms
40,116 KB
testcase_26 AC 127 ms
41,416 KB
testcase_27 AC 125 ms
41,396 KB
testcase_28 AC 112 ms
39,832 KB
testcase_29 AC 114 ms
39,832 KB
testcase_30 AC 127 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder25 {

    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;

        int cnt2 = 0;
        while (m % 2 == 0) {
        	cnt2++;
        	m /= 2;
        }
        int cnt5 = 0;
        while (m % 5 == 0) {
        	cnt5++;
        	m /= 5;
        }

        while (n % 10 == 0) {
        	n /= 10;
        }
        n %= 10;

        if (m != 1) {
        	System.out.println(-1);
        } else if (cnt2 == cnt5) {
        	System.out.println(n);
        } else if (cnt2 > cnt5) {
        	System.out.println(5);
        } else {
        	long tmp = 1;
        	for (int i = 0; i < cnt5 - cnt2; i++) {
        		tmp *= 2;
        	}
        	System.out.println(tmp * n % 10);
        }

        sc.close();
    }

	private static long gcd(long n, long m) {
		if (m == 0) {
			return n;
		} else {
			return gcd(m, n % m);
		}
	}
}
0