結果

問題 No.25 有限小数
ユーザー kano_townkano_town
提出日時 2014-11-22 21:12:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 782 bytes
コンパイル時間 3,616 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-11-15 21:07:35
合計ジャッジ時間 8,441 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,828 KB
testcase_01 AC 134 ms
54,120 KB
testcase_02 AC 133 ms
53,804 KB
testcase_03 AC 132 ms
53,788 KB
testcase_04 AC 132 ms
53,976 KB
testcase_05 AC 132 ms
53,900 KB
testcase_06 AC 135 ms
54,100 KB
testcase_07 AC 135 ms
53,884 KB
testcase_08 AC 133 ms
53,676 KB
testcase_09 AC 133 ms
53,948 KB
testcase_10 AC 133 ms
54,072 KB
testcase_11 AC 131 ms
53,620 KB
testcase_12 AC 132 ms
54,020 KB
testcase_13 AC 135 ms
54,068 KB
testcase_14 AC 133 ms
54,276 KB
testcase_15 AC 133 ms
53,988 KB
testcase_16 AC 133 ms
53,908 KB
testcase_17 AC 131 ms
54,004 KB
testcase_18 AC 134 ms
54,136 KB
testcase_19 AC 133 ms
53,884 KB
testcase_20 AC 134 ms
53,980 KB
testcase_21 AC 134 ms
53,880 KB
testcase_22 AC 134 ms
54,056 KB
testcase_23 AC 134 ms
53,940 KB
testcase_24 AC 133 ms
53,888 KB
testcase_25 AC 132 ms
54,120 KB
testcase_26 AC 133 ms
53,920 KB
testcase_27 AC 131 ms
53,928 KB
testcase_28 AC 132 ms
53,852 KB
testcase_29 AC 135 ms
53,816 KB
testcase_30 AC 133 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder25 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long M = sc.nextLong();
		long div;
		
		while ((div = gcd(N, M)) != 1) {
			N /= div;
			M /= div;
		}
		
		while (M % 10L == 0L) M /= 10L;
		if (M == 1) while (N % 10L == 0L) N /= 10L;

		N = N % 10L == 0L ? 1L : N % 10L;
		while (M % 5L == 0L) {
			M /= 5;
			N = N * 2L % 10L;
		}
		while (M % 2L == 0L) {
			M /= 2L;
			N = 5L;
		}
		N = M == 1 ? N : -1;
		System.out.println(N);

	}

	static long gcd(long a, long b) {
		long c, tmp;

		if (a < b) {
			tmp = a;
			a = b;
			b = tmp;
		}

		while (b != 0) {
			c = a % b;
			a = b;
			b = c;
		}
		return a;
	}
}
0