結果

問題 No.56 消費税
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 00:24:47
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 113 bytes
コンパイル時間 11,719 ms
コンパイル使用メモリ 429,992 KB
実行使用メモリ 51,888 KB
最終ジャッジ日時 2024-09-15 03:15:44
合計ジャッジ時間 21,044 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
51,436 KB
testcase_01 AC 310 ms
51,568 KB
testcase_02 AC 305 ms
51,780 KB
testcase_03 WA -
testcase_04 AC 306 ms
51,564 KB
testcase_05 AC 306 ms
51,596 KB
testcase_06 AC 313 ms
51,568 KB
testcase_07 AC 306 ms
51,676 KB
testcase_08 AC 303 ms
51,680 KB
testcase_09 AC 311 ms
51,568 KB
testcase_10 AC 309 ms
51,548 KB
testcase_11 AC 303 ms
51,460 KB
testcase_12 AC 308 ms
51,684 KB
testcase_13 AC 303 ms
51,432 KB
testcase_14 AC 304 ms
51,684 KB
testcase_15 AC 310 ms
51,668 KB
testcase_16 AC 306 ms
51,596 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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