結果

問題 No.56 消費税
ユーザー da_louisda_louis
提出日時 2020-02-07 00:47:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 309 ms / 5,000 ms
コード長 203 bytes
コンパイル時間 10,428 ms
コンパイル使用メモリ 426,816 KB
実行使用メモリ 57,120 KB
最終ジャッジ日時 2024-09-25 07:07:26
合計ジャッジ時間 19,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
57,012 KB
testcase_01 AC 295 ms
56,940 KB
testcase_02 AC 309 ms
57,096 KB
testcase_03 AC 301 ms
56,980 KB
testcase_04 AC 293 ms
56,800 KB
testcase_05 AC 295 ms
57,120 KB
testcase_06 AC 299 ms
56,784 KB
testcase_07 AC 302 ms
56,776 KB
testcase_08 AC 298 ms
56,804 KB
testcase_09 AC 296 ms
57,112 KB
testcase_10 AC 298 ms
57,040 KB
testcase_11 AC 297 ms
56,872 KB
testcase_12 AC 295 ms
56,800 KB
testcase_13 AC 296 ms
56,820 KB
testcase_14 AC 297 ms
56,964 KB
testcase_15 AC 295 ms
56,896 KB
testcase_16 AC 295 ms
57,048 KB
testcase_17 AC 301 ms
57,064 KB
testcase_18 AC 302 ms
56,776 KB
testcase_19 AC 295 ms
57,072 KB
testcase_20 AC 297 ms
57,052 KB
testcase_21 AC 297 ms
56,904 KB
testcase_22 AC 300 ms
57,088 KB
testcase_23 AC 296 ms
56,804 KB
testcase_24 AC 299 ms
56,804 KB
testcase_25 AC 301 ms
56,796 KB
testcase_26 AC 300 ms
56,776 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    p111()
}

fun p111() {
    val (d, p) = readLine()!!.split(' ').map { it.toDouble() }

    val answer = Math.floor(d * (100 + p) / 100).toInt()

    println(answer)
}
0