結果

問題 No.56 消費税
ユーザー komkomhkomkomh
提出日時 2019-04-08 11:27:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 293 ms / 5,000 ms
コード長 126 bytes
コンパイル時間 11,590 ms
コンパイル使用メモリ 427,664 KB
実行使用メモリ 57,096 KB
最終ジャッジ日時 2024-04-30 20:14:48
合計ジャッジ時間 17,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
56,788 KB
testcase_01 AC 291 ms
57,012 KB
testcase_02 AC 293 ms
56,872 KB
testcase_03 AC 293 ms
56,856 KB
testcase_04 AC 276 ms
56,808 KB
testcase_05 AC 268 ms
56,964 KB
testcase_06 AC 270 ms
56,952 KB
testcase_07 AC 264 ms
57,096 KB
testcase_08 AC 271 ms
56,888 KB
testcase_09 AC 279 ms
56,864 KB
testcase_10 AC 273 ms
56,980 KB
testcase_11 AC 263 ms
56,856 KB
testcase_12 AC 265 ms
56,796 KB
testcase_13 AC 269 ms
56,888 KB
testcase_14 AC 270 ms
56,904 KB
testcase_15 AC 270 ms
57,096 KB
testcase_16 AC 267 ms
56,944 KB
testcase_17 AC 279 ms
57,052 KB
testcase_18 AC 267 ms
56,808 KB
testcase_19 AC 268 ms
56,796 KB
testcase_20 AC 269 ms
56,976 KB
testcase_21 AC 276 ms
56,944 KB
testcase_22 AC 268 ms
56,788 KB
testcase_23 AC 270 ms
56,924 KB
testcase_24 AC 268 ms
56,944 KB
testcase_25 AC 273 ms
56,988 KB
testcase_26 AC 270 ms
57,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val (d, p) = readLine()!!.split(" ").map(String::toInt)
    println(d * (100 + p) / 100)
}
0