結果

問題 No.56 消費税
ユーザー komkomhkomkomh
提出日時 2019-04-08 11:27:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 343 ms / 5,000 ms
コード長 126 bytes
コンパイル時間 12,544 ms
コンパイル使用メモリ 433,880 KB
実行使用メモリ 56,988 KB
最終ジャッジ日時 2024-11-20 17:55:19
合計ジャッジ時間 21,252 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
56,900 KB
testcase_01 AC 331 ms
56,884 KB
testcase_02 AC 333 ms
56,888 KB
testcase_03 AC 288 ms
56,984 KB
testcase_04 AC 268 ms
56,964 KB
testcase_05 AC 266 ms
56,984 KB
testcase_06 AC 261 ms
56,840 KB
testcase_07 AC 261 ms
56,800 KB
testcase_08 AC 261 ms
56,988 KB
testcase_09 AC 264 ms
56,836 KB
testcase_10 AC 264 ms
56,960 KB
testcase_11 AC 265 ms
56,896 KB
testcase_12 AC 264 ms
56,844 KB
testcase_13 AC 264 ms
56,940 KB
testcase_14 AC 265 ms
56,872 KB
testcase_15 AC 264 ms
56,952 KB
testcase_16 AC 275 ms
56,948 KB
testcase_17 AC 265 ms
56,856 KB
testcase_18 AC 271 ms
56,940 KB
testcase_19 AC 278 ms
56,888 KB
testcase_20 AC 268 ms
56,900 KB
testcase_21 AC 280 ms
56,848 KB
testcase_22 AC 283 ms
56,972 KB
testcase_23 AC 267 ms
56,944 KB
testcase_24 AC 263 ms
56,944 KB
testcase_25 AC 262 ms
56,960 KB
testcase_26 AC 286 ms
56,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

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