結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
54,324 KB
testcase_01 AC 307 ms
54,128 KB
testcase_02 AC 313 ms
54,160 KB
testcase_03 AC 314 ms
54,316 KB
testcase_04 AC 316 ms
54,272 KB
testcase_05 AC 311 ms
54,132 KB
testcase_06 AC 314 ms
54,240 KB
testcase_07 AC 309 ms
54,348 KB
testcase_08 AC 321 ms
54,120 KB
testcase_09 AC 321 ms
54,180 KB
testcase_10 AC 314 ms
54,296 KB
testcase_11 AC 311 ms
54,128 KB
testcase_12 AC 314 ms
54,176 KB
testcase_13 AC 318 ms
54,192 KB
testcase_14 AC 312 ms
54,280 KB
testcase_15 AC 306 ms
54,164 KB
testcase_16 AC 308 ms
54,104 KB
testcase_17 AC 305 ms
54,272 KB
testcase_18 AC 321 ms
54,180 KB
testcase_19 AC 311 ms
54,220 KB
testcase_20 AC 305 ms
54,208 KB
testcase_21 AC 301 ms
54,200 KB
testcase_22 AC 315 ms
54,296 KB
testcase_23 AC 310 ms
54,096 KB
testcase_24 AC 303 ms
54,192 KB
testcase_25 AC 305 ms
54,120 KB
testcase_26 AC 299 ms
54,368 KB
testcase_27 AC 303 ms
54,120 KB
testcase_28 AC 301 ms
54,124 KB
testcase_29 AC 303 ms
54,400 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