結果

問題 No.56 消費税
ユーザー minokasagominokasago
提出日時 2019-11-01 14:29:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 318 ms / 5,000 ms
コード長 131 bytes
コンパイル時間 11,121 ms
コンパイル使用メモリ 432,144 KB
実行使用メモリ 51,848 KB
最終ジャッジ日時 2024-09-14 22:40:45
合計ジャッジ時間 20,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
51,648 KB
testcase_01 AC 312 ms
51,724 KB
testcase_02 AC 318 ms
51,596 KB
testcase_03 AC 313 ms
51,592 KB
testcase_04 AC 315 ms
51,536 KB
testcase_05 AC 310 ms
51,520 KB
testcase_06 AC 314 ms
51,516 KB
testcase_07 AC 311 ms
51,400 KB
testcase_08 AC 316 ms
51,416 KB
testcase_09 AC 313 ms
51,616 KB
testcase_10 AC 308 ms
51,848 KB
testcase_11 AC 313 ms
51,716 KB
testcase_12 AC 307 ms
51,724 KB
testcase_13 AC 307 ms
51,396 KB
testcase_14 AC 305 ms
51,484 KB
testcase_15 AC 308 ms
51,760 KB
testcase_16 AC 305 ms
51,576 KB
testcase_17 AC 309 ms
51,472 KB
testcase_18 AC 316 ms
51,556 KB
testcase_19 AC 303 ms
51,524 KB
testcase_20 AC 303 ms
51,608 KB
testcase_21 AC 306 ms
51,480 KB
testcase_22 AC 306 ms
51,416 KB
testcase_23 AC 308 ms
51,488 KB
testcase_24 AC 312 ms
51,608 KB
testcase_25 AC 308 ms
51,452 KB
testcase_26 AC 308 ms
51,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.*

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

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

0