結果

問題 No.25 有限小数
ユーザー ぴろずぴろず
提出日時 2014-12-19 09:26:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 502 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-11-15 21:07:49
合計ジャッジ時間 7,446 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,980 KB
testcase_01 AC 133 ms
53,984 KB
testcase_02 AC 132 ms
54,056 KB
testcase_03 AC 132 ms
54,000 KB
testcase_04 AC 133 ms
53,868 KB
testcase_05 AC 135 ms
53,944 KB
testcase_06 AC 134 ms
53,968 KB
testcase_07 AC 135 ms
53,948 KB
testcase_08 AC 133 ms
54,268 KB
testcase_09 AC 132 ms
54,312 KB
testcase_10 AC 131 ms
54,124 KB
testcase_11 AC 137 ms
53,956 KB
testcase_12 AC 135 ms
54,284 KB
testcase_13 AC 138 ms
54,028 KB
testcase_14 AC 134 ms
54,192 KB
testcase_15 AC 133 ms
53,860 KB
testcase_16 AC 134 ms
54,368 KB
testcase_17 AC 125 ms
52,936 KB
testcase_18 AC 138 ms
54,192 KB
testcase_19 AC 137 ms
53,908 KB
testcase_20 AC 141 ms
54,000 KB
testcase_21 AC 139 ms
53,972 KB
testcase_22 AC 134 ms
54,252 KB
testcase_23 AC 132 ms
54,100 KB
testcase_24 AC 133 ms
53,980 KB
testcase_25 AC 134 ms
54,356 KB
testcase_26 AC 135 ms
53,948 KB
testcase_27 AC 135 ms
54,196 KB
testcase_28 AC 137 ms
54,092 KB
testcase_29 AC 136 ms
53,876 KB
testcase_30 AC 134 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no025;

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

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		BigDecimal n = new BigDecimal(sc.next());
		BigDecimal m = new BigDecimal(sc.next());
		try {
			BigDecimal ans = n.divide(m);
			ans = ans.stripTrailingZeros();
			String s = ans.unscaledValue().toString();
			System.out.println(s.charAt(s.length()-1));
		} catch (ArithmeticException e) {
			System.out.println(-1);
		}
	}
}
0