結果

問題 No.477 MVP
ユーザー htkbhtkb
提出日時 2017-02-01 22:12:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 348 ms / 1,000 ms
コード長 299 bytes
コンパイル時間 10,951 ms
コンパイル使用メモリ 432,600 KB
実行使用メモリ 55,508 KB
最終ジャッジ日時 2024-11-20 07:23:55
合計ジャッジ時間 16,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
55,256 KB
testcase_01 AC 343 ms
55,380 KB
testcase_02 AC 343 ms
55,424 KB
testcase_03 AC 343 ms
55,252 KB
testcase_04 AC 339 ms
55,276 KB
testcase_05 AC 341 ms
55,372 KB
testcase_06 AC 341 ms
55,472 KB
testcase_07 AC 343 ms
55,292 KB
testcase_08 AC 343 ms
55,304 KB
testcase_09 AC 342 ms
55,408 KB
testcase_10 AC 346 ms
55,400 KB
testcase_11 AC 348 ms
55,508 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:7:13: warning: 'divide(BigDecimal!, Int): BigDecimal!' is deprecated. Deprecated in Java
    hp = hp.divide(BigDecimal(sc.next()).plus(BigDecimal("1")), BigDecimal.ROUND_FLOOR).plus(BigDecimal("1"))
            ^
Main.kt:7:76: warning: 'ROUND_FLOOR: Int' is deprecated. Deprecated in Java
    hp = hp.divide(BigDecimal(sc.next()).plus(BigDecimal("1")), BigDecimal.ROUND_FLOOR).plus(BigDecimal("1"))
                                                                           ^

ソースコード

diff #

import java.math.BigDecimal
import java.util.*

fun main(args: Array<String>) {
    val sc = Scanner(System.`in`)
    var hp:BigDecimal = BigDecimal(sc.next());
    hp = hp.divide(BigDecimal(sc.next()).plus(BigDecimal("1")), BigDecimal.ROUND_FLOOR).plus(BigDecimal("1"))
    println(hp.toString())
}
0