結果

問題 No.477 MVP
ユーザー htkbhtkb
提出日時 2017-02-01 22:08:28
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 295 bytes
コンパイル時間 10,470 ms
コンパイル使用メモリ 430,956 KB
実行使用メモリ 55,624 KB
最終ジャッジ日時 2024-11-20 07:22:49
合計ジャッジ時間 15,882 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 351 ms
51,152 KB
testcase_01 AC 347 ms
51,372 KB
testcase_02 AC 350 ms
51,560 KB
testcase_03 AC 349 ms
51,236 KB
testcase_04 AC 347 ms
51,552 KB
testcase_05 AC 342 ms
51,472 KB
testcase_06 AC 347 ms
51,300 KB
testcase_07 AC 346 ms
51,376 KB
testcase_08 AC 344 ms
51,336 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.nextInt()+1).toString()), BigDecimal.ROUND_FLOOR).plus(BigDecimal("1"))
            ^
Main.kt:7:72: warning: 'ROUND_FLOOR: Int' is deprecated. Deprecated in Java
    hp = hp.divide(BigDecimal((sc.nextInt()+1).toString()), 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.nextInt()+1).toString()), BigDecimal.ROUND_FLOOR).plus(BigDecimal("1"))
    println(hp.toString())
}
0