結果

問題 No.56 消費税
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-01 15:17:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 287 ms / 5,000 ms
コード長 150 bytes
コンパイル時間 9,668 ms
コンパイル使用メモリ 436,372 KB
実行使用メモリ 57,148 KB
最終ジャッジ日時 2024-11-20 11:10:49
合計ジャッジ時間 18,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
57,132 KB
testcase_01 AC 279 ms
57,084 KB
testcase_02 AC 274 ms
57,084 KB
testcase_03 AC 277 ms
56,840 KB
testcase_04 AC 280 ms
57,016 KB
testcase_05 AC 274 ms
57,064 KB
testcase_06 AC 287 ms
56,844 KB
testcase_07 AC 275 ms
56,888 KB
testcase_08 AC 278 ms
56,972 KB
testcase_09 AC 276 ms
57,148 KB
testcase_10 AC 277 ms
56,836 KB
testcase_11 AC 283 ms
56,844 KB
testcase_12 AC 274 ms
56,992 KB
testcase_13 AC 278 ms
57,064 KB
testcase_14 AC 276 ms
57,080 KB
testcase_15 AC 276 ms
56,840 KB
testcase_16 AC 274 ms
57,032 KB
testcase_17 AC 277 ms
56,956 KB
testcase_18 AC 279 ms
56,860 KB
testcase_19 AC 273 ms
57,028 KB
testcase_20 AC 277 ms
56,948 KB
testcase_21 AC 278 ms
56,728 KB
testcase_22 AC 273 ms
57,008 KB
testcase_23 AC 277 ms
56,852 KB
testcase_24 AC 285 ms
57,028 KB
testcase_25 AC 279 ms
57,064 KB
testcase_26 AC 287 ms
56,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^

ソースコード

diff #

fun main( args : Array<String> ) {
  val (m, n) = readLine()!!.split(" ").map { it.toDouble() }
  println("${ ((100.0 + n) * m / 100.0).toInt() }" )
}
0