結果

問題 No.56 消費税
ユーザー minokasagominokasago
提出日時 2019-11-01 14:29:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 292 ms / 5,000 ms
コード長 131 bytes
コンパイル時間 12,257 ms
コンパイル使用メモリ 412,324 KB
実行使用メモリ 53,372 KB
最終ジャッジ日時 2023-10-13 00:46:41
合計ジャッジ時間 21,493 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
53,372 KB
testcase_01 AC 286 ms
52,836 KB
testcase_02 AC 287 ms
52,620 KB
testcase_03 AC 289 ms
53,020 KB
testcase_04 AC 285 ms
52,928 KB
testcase_05 AC 286 ms
52,744 KB
testcase_06 AC 285 ms
52,868 KB
testcase_07 AC 285 ms
52,728 KB
testcase_08 AC 287 ms
52,752 KB
testcase_09 AC 285 ms
52,580 KB
testcase_10 AC 287 ms
52,628 KB
testcase_11 AC 284 ms
52,812 KB
testcase_12 AC 291 ms
52,988 KB
testcase_13 AC 291 ms
53,044 KB
testcase_14 AC 292 ms
52,688 KB
testcase_15 AC 288 ms
52,868 KB
testcase_16 AC 286 ms
52,824 KB
testcase_17 AC 290 ms
52,816 KB
testcase_18 AC 290 ms
52,736 KB
testcase_19 AC 287 ms
52,752 KB
testcase_20 AC 289 ms
52,876 KB
testcase_21 AC 285 ms
52,896 KB
testcase_22 AC 286 ms
52,748 KB
testcase_23 AC 287 ms
52,784 KB
testcase_24 AC 286 ms
52,744 KB
testcase_25 AC 291 ms
52,604 KB
testcase_26 AC 289 ms
52,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.*

fun main()
{
    val (D, P) = readLine()!!.split(" ").map(String::toLong)

    println(D * (100+P) / 100)
}

0