結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,236 KB
testcase_01 AC 131 ms
41,576 KB
testcase_02 AC 129 ms
41,108 KB
testcase_03 AC 131 ms
41,508 KB
testcase_04 AC 132 ms
41,492 KB
testcase_05 AC 130 ms
41,540 KB
testcase_06 AC 134 ms
41,520 KB
testcase_07 AC 130 ms
41,320 KB
testcase_08 AC 131 ms
41,488 KB
testcase_09 AC 133 ms
41,540 KB
testcase_10 AC 136 ms
41,720 KB
testcase_11 AC 134 ms
41,352 KB
testcase_12 AC 133 ms
41,448 KB
testcase_13 AC 131 ms
41,244 KB
testcase_14 AC 132 ms
41,484 KB
testcase_15 AC 130 ms
41,040 KB
testcase_16 AC 135 ms
41,504 KB
testcase_17 AC 131 ms
41,680 KB
testcase_18 AC 133 ms
41,492 KB
testcase_19 AC 132 ms
41,264 KB
testcase_20 AC 127 ms
41,388 KB
testcase_21 AC 131 ms
41,564 KB
testcase_22 WA -
testcase_23 AC 130 ms
41,564 KB
testcase_24 AC 131 ms
41,472 KB
testcase_25 AC 127 ms
41,108 KB
testcase_26 AC 116 ms
40,108 KB
testcase_27 AC 128 ms
41,340 KB
testcase_28 AC 126 ms
41,324 KB
testcase_29 AC 130 ms
41,264 KB
testcase_30 AC 128 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong(), M = sc.nextLong();
		sc.close();
		long 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