結果

問題 No.858 わり算
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-11-08 18:34:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 12,101 ms
コンパイル使用メモリ 437,432 KB
実行使用メモリ 52,024 KB
最終ジャッジ日時 2024-07-22 15:35:49
合計ジャッジ時間 15,864 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
51,824 KB
testcase_01 AC 310 ms
51,780 KB
testcase_02 AC 311 ms
51,884 KB
testcase_03 AC 313 ms
51,892 KB
testcase_04 AC 316 ms
51,832 KB
testcase_05 AC 310 ms
52,024 KB
testcase_06 AC 313 ms
51,632 KB
testcase_07 AC 314 ms
51,740 KB
testcase_08 AC 319 ms
51,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal
import java.math.RoundingMode

fun main() {
    val s = 50
    val d = readLine()!!
    val (a, b) = d.split(' ').map(String::toInt)
    val v = BigDecimal(a.toBigInteger(), s).divide(BigDecimal(b.toBigInteger(), s), RoundingMode.FLOOR)
    val z = v.toPlainString()
    println(z)
}
0