結果

問題 No.56 消費税
ユーザー javyjavy
提出日時 2015-11-02 23:04:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 338 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 12,587 ms
コンパイル使用メモリ 429,716 KB
実行使用メモリ 52,088 KB
最終ジャッジ日時 2024-11-19 15:03:55
合計ジャッジ時間 21,237 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
51,824 KB
testcase_01 AC 324 ms
51,764 KB
testcase_02 AC 328 ms
51,820 KB
testcase_03 AC 330 ms
51,688 KB
testcase_04 AC 328 ms
51,760 KB
testcase_05 AC 329 ms
51,848 KB
testcase_06 AC 322 ms
51,820 KB
testcase_07 AC 318 ms
51,788 KB
testcase_08 AC 326 ms
51,724 KB
testcase_09 AC 329 ms
51,776 KB
testcase_10 AC 321 ms
51,664 KB
testcase_11 AC 328 ms
52,068 KB
testcase_12 AC 325 ms
51,852 KB
testcase_13 AC 320 ms
51,684 KB
testcase_14 AC 330 ms
51,884 KB
testcase_15 AC 321 ms
51,880 KB
testcase_16 AC 327 ms
52,088 KB
testcase_17 AC 329 ms
51,608 KB
testcase_18 AC 327 ms
51,912 KB
testcase_19 AC 327 ms
51,808 KB
testcase_20 AC 325 ms
51,944 KB
testcase_21 AC 317 ms
51,768 KB
testcase_22 AC 321 ms
51,876 KB
testcase_23 AC 323 ms
51,752 KB
testcase_24 AC 327 ms
51,868 KB
testcase_25 AC 323 ms
51,740 KB
testcase_26 AC 327 ms
51,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/02.
 */
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
    }
    val inputNums = readLineLongArray()
    val basePrice = inputNums[0]
    val shohiPercent = 100 + inputNums[1]
    println(basePrice * shohiPercent / 100)
}
0