結果

問題 No.858 わり算
ユーザー rabirabi
提出日時 2019-08-15 14:23:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 8,624 ms
コンパイル使用メモリ 76,424 KB
実行使用メモリ 51,888 KB
最終ジャッジ日時 2025-01-05 13:56:23
合計ジャッジ時間 3,698 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
51,808 KB
testcase_01 AC 55 ms
51,652 KB
testcase_02 AC 57 ms
51,844 KB
testcase_03 AC 55 ms
51,548 KB
testcase_04 AC 55 ms
51,824 KB
testcase_05 AC 56 ms
51,812 KB
testcase_06 AC 54 ms
51,888 KB
testcase_07 AC 55 ms
51,820 KB
testcase_08 AC 55 ms
51,800 KB
testcase_09 AC 58 ms
51,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;

class Main { 
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] ary = br.readLine().split(" ");
        
        BigDecimal a = new BigDecimal(ary[0]);
		BigDecimal b = new BigDecimal(ary[1]);
		System.out.println(a.divide(b, 50, BigDecimal.ROUND_DOWN).toPlainString());
        
    }
}
0