結果

問題 No.25 有限小数
ユーザー Mcpu3Mcpu3
提出日時 2019-03-19 23:34:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 725 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 76,176 KB
実行使用メモリ 55,964 KB
最終ジャッジ日時 2024-09-14 13:46:14
合計ジャッジ時間 7,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,092 KB
testcase_01 AC 132 ms
55,964 KB
testcase_02 AC 129 ms
53,792 KB
testcase_03 AC 130 ms
54,132 KB
testcase_04 AC 132 ms
54,404 KB
testcase_05 AC 134 ms
54,096 KB
testcase_06 AC 134 ms
54,264 KB
testcase_07 AC 133 ms
53,784 KB
testcase_08 AC 137 ms
54,216 KB
testcase_09 AC 136 ms
54,076 KB
testcase_10 AC 136 ms
54,168 KB
testcase_11 AC 132 ms
53,780 KB
testcase_12 AC 133 ms
54,056 KB
testcase_13 AC 134 ms
54,424 KB
testcase_14 AC 136 ms
54,016 KB
testcase_15 AC 134 ms
55,804 KB
testcase_16 AC 139 ms
54,256 KB
testcase_17 AC 137 ms
53,804 KB
testcase_18 AC 140 ms
54,280 KB
testcase_19 AC 136 ms
53,620 KB
testcase_20 AC 135 ms
53,656 KB
testcase_21 AC 133 ms
54,140 KB
testcase_22 AC 138 ms
54,196 KB
testcase_23 AC 135 ms
54,272 KB
testcase_24 AC 139 ms
54,304 KB
testcase_25 AC 142 ms
54,324 KB
testcase_26 AC 136 ms
53,912 KB
testcase_27 AC 137 ms
54,012 KB
testcase_28 AC 136 ms
54,072 KB
testcase_29 AC 133 ms
54,396 KB
testcase_30 AC 134 ms
53,708 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