結果

問題 No.56 消費税
ユーザー da_louisda_louis
提出日時 2020-02-07 00:47:53
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 309 ms / 5,000 ms
コード長 203 bytes
コンパイル時間 10,428 ms
コンパイル使用メモリ 426,816 KB
実行使用メモリ 57,120 KB
最終ジャッジ日時 2024-09-25 07:07:26
合計ジャッジ時間 19,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    p111()
}

fun p111() {
    val (d, p) = readLine()!!.split(' ').map { it.toDouble() }

    val answer = Math.floor(d * (100 + p) / 100).toInt()

    println(answer)
}
0