結果

問題 No.56 消費税
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 00:18:46
言語 Kotlin
(2.1.0)
結果
WA  
実行時間 -
コード長 115 bytes
コンパイル時間 12,109 ms
コンパイル使用メモリ 433,000 KB
実行使用メモリ 51,708 KB
最終ジャッジ日時 2024-09-15 03:12:51
合計ジャッジ時間 20,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other AC * 3 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
val (d, r) = readLine()!!.split(" ").map {it.toDouble()}
println(kotlin.math.floor(d*(1+r)).toInt())
}
0