結果

問題 No.285 消費税2
ユーザー バカらっくバカらっく
提出日時 2019-08-24 08:54:10
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 111 bytes
コンパイル時間 11,327 ms
コンパイル使用メモリ 426,708 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-11-20 19:21:54
合計ジャッジ時間 20,321 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
54,132 KB
testcase_01 AC 291 ms
54,340 KB
testcase_02 AC 298 ms
54,300 KB
testcase_03 AC 293 ms
54,324 KB
testcase_04 AC 296 ms
54,344 KB
testcase_05 AC 290 ms
54,108 KB
testcase_06 AC 291 ms
54,216 KB
testcase_07 AC 292 ms
54,288 KB
testcase_08 AC 294 ms
54,280 KB
testcase_09 AC 296 ms
54,400 KB
testcase_10 AC 296 ms
54,204 KB
testcase_11 AC 293 ms
54,164 KB
testcase_12 AC 294 ms
54,184 KB
testcase_13 AC 297 ms
54,112 KB
testcase_14 AC 292 ms
54,268 KB
testcase_15 AC 293 ms
54,188 KB
testcase_16 AC 289 ms
54,216 KB
testcase_17 AC 290 ms
54,356 KB
testcase_18 AC 289 ms
54,320 KB
testcase_19 AC 289 ms
54,160 KB
testcase_20 AC 296 ms
54,172 KB
testcase_21 AC 294 ms
54,084 KB
testcase_22 AC 297 ms
54,148 KB
testcase_23 AC 297 ms
54,188 KB
testcase_24 AC 297 ms
54,176 KB
testcase_25 AC 291 ms
54,276 KB
testcase_26 AC 289 ms
54,132 KB
testcase_27 AC 292 ms
54,276 KB
testcase_28 AC 290 ms
54,188 KB
testcase_29 AC 288 ms
54,204 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun main(args: Array<String>){
    val ans = (readLine()!!.toLong() * 108) / 100.toDouble()
    println(ans)
}
0