結果

問題 No.56 消費税
ユーザー komkomhkomkomh
提出日時 2019-04-08 11:27:54
言語 Kotlin
(1.9.10)
結果
AC  
実行時間 300 ms / 5,000 ms
コード長 126 bytes
コンパイル時間 11,989 ms
コンパイル使用メモリ 421,628 KB
実行使用メモリ 54,808 KB
最終ジャッジ日時 2023-08-13 01:41:46
合計ジャッジ時間 21,078 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
52,916 KB
testcase_01 AC 288 ms
53,028 KB
testcase_02 AC 294 ms
54,796 KB
testcase_03 AC 297 ms
52,940 KB
testcase_04 AC 295 ms
53,124 KB
testcase_05 AC 300 ms
53,060 KB
testcase_06 AC 287 ms
52,948 KB
testcase_07 AC 293 ms
54,808 KB
testcase_08 AC 296 ms
52,920 KB
testcase_09 AC 293 ms
53,032 KB
testcase_10 AC 292 ms
52,860 KB
testcase_11 AC 292 ms
53,336 KB
testcase_12 AC 294 ms
53,024 KB
testcase_13 AC 293 ms
53,244 KB
testcase_14 AC 296 ms
52,972 KB
testcase_15 AC 291 ms
53,216 KB
testcase_16 AC 295 ms
53,192 KB
testcase_17 AC 297 ms
53,016 KB
testcase_18 AC 299 ms
54,720 KB
testcase_19 AC 295 ms
52,964 KB
testcase_20 AC 288 ms
52,968 KB
testcase_21 AC 295 ms
53,068 KB
testcase_22 AC 291 ms
53,040 KB
testcase_23 AC 293 ms
52,996 KB
testcase_24 AC 296 ms
53,036 KB
testcase_25 AC 294 ms
53,032 KB
testcase_26 AC 298 ms
52,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

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