結果

問題 No.858 わり算
ユーザー rabirabi
提出日時 2019-08-15 14:23:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 37,632 KB
最終ジャッジ日時 2024-09-19 15:17:19
合計ジャッジ時間 3,184 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,396 KB
testcase_01 AC 58 ms
37,296 KB
testcase_02 AC 57 ms
37,140 KB
testcase_03 AC 56 ms
37,392 KB
testcase_04 AC 56 ms
37,388 KB
testcase_05 AC 57 ms
37,632 KB
testcase_06 AC 55 ms
37,576 KB
testcase_07 AC 55 ms
37,244 KB
testcase_08 AC 55 ms
37,260 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