結果

問題 No.25 有限小数
ユーザー Mcpu3Mcpu3
提出日時 2019-03-19 23:30:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 722 bytes
コンパイル時間 2,431 ms
コンパイル使用メモリ 75,320 KB
実行使用メモリ 41,948 KB
最終ジャッジ日時 2024-09-14 13:40:59
合計ジャッジ時間 7,511 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,432 KB
testcase_01 AC 132 ms
41,356 KB
testcase_02 AC 130 ms
41,276 KB
testcase_03 AC 134 ms
41,656 KB
testcase_04 AC 133 ms
41,320 KB
testcase_05 AC 137 ms
41,404 KB
testcase_06 AC 136 ms
41,668 KB
testcase_07 AC 132 ms
41,244 KB
testcase_08 AC 133 ms
41,948 KB
testcase_09 AC 120 ms
40,352 KB
testcase_10 AC 136 ms
41,444 KB
testcase_11 AC 133 ms
41,520 KB
testcase_12 AC 134 ms
41,668 KB
testcase_13 AC 135 ms
41,804 KB
testcase_14 AC 136 ms
41,388 KB
testcase_15 AC 131 ms
41,308 KB
testcase_16 AC 134 ms
41,708 KB
testcase_17 AC 132 ms
41,544 KB
testcase_18 AC 121 ms
40,488 KB
testcase_19 AC 134 ms
41,256 KB
testcase_20 AC 133 ms
41,068 KB
testcase_21 AC 131 ms
41,124 KB
testcase_22 AC 137 ms
41,748 KB
testcase_23 AC 132 ms
41,584 KB
testcase_24 AC 130 ms
41,292 KB
testcase_25 AC 129 ms
41,444 KB
testcase_26 AC 115 ms
39,996 KB
testcase_27 AC 128 ms
41,224 KB
testcase_28 AC 128 ms
41,232 KB
testcase_29 AC 130 ms
41,072 KB
testcase_30 AC 129 ms
41,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.util.Scanner;

class Main {
	static long gcd(long a, long b) {
		return b != 0 ? gcd(b, a % b) : a;
	}
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong(), M = sc.nextLong();
		sc.close();
		long tmp1 = gcd(N, M);
		N /= tmp1;
		M /= tmp1;
		tmp1 = M;
		while (tmp1 % 2 == 0) tmp1 /= 2;
		while (tmp1 % 5 == 0) tmp1 /= 5;
		if (tmp1 == 1) {
			BigDecimal tmp2 = new BigDecimal(N), tmp3 = new BigDecimal(M);
			String tmp4 = tmp2.divide(tmp3).toPlainString();
			int i = tmp4.length() - 1;
			while (tmp4.charAt(i) == '0') --i;
			System.out.print(tmp4.charAt(i));
		}
		else System.out.print(-1);
	}
}
0