結果

問題 No.285 消費税2
ユーザー javyjavy
提出日時 2015-12-07 04:46:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 11,914 ms
コンパイル使用メモリ 431,756 KB
実行使用メモリ 55,292 KB
最終ジャッジ日時 2024-04-30 12:08:12
合計ジャッジ時間 23,797 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
55,176 KB
testcase_01 AC 345 ms
55,044 KB
testcase_02 AC 342 ms
55,140 KB
testcase_03 AC 345 ms
55,144 KB
testcase_04 AC 345 ms
55,128 KB
testcase_05 AC 342 ms
55,124 KB
testcase_06 AC 341 ms
55,040 KB
testcase_07 AC 349 ms
55,184 KB
testcase_08 AC 350 ms
55,048 KB
testcase_09 AC 350 ms
55,220 KB
testcase_10 AC 345 ms
55,012 KB
testcase_11 AC 344 ms
55,048 KB
testcase_12 AC 344 ms
55,036 KB
testcase_13 AC 345 ms
55,176 KB
testcase_14 AC 344 ms
55,108 KB
testcase_15 AC 349 ms
55,200 KB
testcase_16 AC 348 ms
55,172 KB
testcase_17 AC 348 ms
55,136 KB
testcase_18 AC 347 ms
55,144 KB
testcase_19 AC 344 ms
55,292 KB
testcase_20 AC 346 ms
55,092 KB
testcase_21 AC 344 ms
55,148 KB
testcase_22 AC 345 ms
55,140 KB
testcase_23 AC 344 ms
55,180 KB
testcase_24 AC 346 ms
55,152 KB
testcase_25 AC 345 ms
55,152 KB
testcase_26 AC 348 ms
55,136 KB
testcase_27 AC 347 ms
55,252 KB
testcase_28 AC 343 ms
55,144 KB
testcase_29 AC 342 ms
55,132 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

fun main(args: Array<String>) {
    fun readLineLongArray(): List<Long> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toLong() }
        return ret
    }

    fun readLineLong(): Long {
        val str = readLine() as String
        return str.toLong()
    }

    fun readLineInt(): Int {
        val str = readLine() as String
        return str.toInt()
    }

    fun readLineIntArray() : List<Int> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toInt() }
        return ret
    }

    fun readLineDoubleArray(): List<Double> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toDouble() }
        return ret
    }

    fun readLineDouble() : Double {
        val str = readLine() as String
        return str.toDouble()
    }

    fun readLineString() : String {
        return readLine() as String
    }

//    fun readLineStringArray(): List<String> {
//        val str = readLine() as String
//        val arrStr = str.split(" ")
//        return arrStr
//    }

    val input = readLineLong()*108
    println((input/100).toString() + "." + java.lang.String.format("%02d",(input%100)))


}
0