結果

問題 No.236 鴛鴦茶
ユーザー javyjavy
提出日時 2015-11-13 02:14:05
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 12,954 ms
コンパイル使用メモリ 435,716 KB
実行使用メモリ 51,788 KB
最終ジャッジ日時 2024-11-19 21:51:09
合計ジャッジ時間 22,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
51,344 KB
testcase_01 AC 328 ms
51,512 KB
testcase_02 AC 326 ms
51,476 KB
testcase_03 AC 323 ms
51,472 KB
testcase_04 AC 324 ms
51,356 KB
testcase_05 AC 324 ms
51,628 KB
testcase_06 AC 321 ms
51,472 KB
testcase_07 AC 320 ms
51,316 KB
testcase_08 AC 321 ms
51,632 KB
testcase_09 AC 324 ms
51,340 KB
testcase_10 AC 326 ms
51,312 KB
testcase_11 AC 318 ms
51,756 KB
testcase_12 AC 322 ms
51,468 KB
testcase_13 AC 330 ms
51,512 KB
testcase_14 AC 320 ms
51,456 KB
testcase_15 AC 326 ms
51,736 KB
testcase_16 AC 328 ms
51,644 KB
testcase_17 AC 325 ms
51,744 KB
testcase_18 AC 321 ms
51,372 KB
testcase_19 AC 327 ms
51,492 KB
testcase_20 AC 326 ms
51,788 KB
testcase_21 AC 323 ms
51,632 KB
testcase_22 AC 321 ms
51,480 KB
testcase_23 AC 327 ms
51,440 KB
testcase_24 AC 329 ms
51,524 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/12.
 */
fun main(args: Array<String>) {
    fun readLineIntArray() : List<Int> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toInt() }
        return ret
    }

    val inputArrInt = readLineIntArray()
    val val1 = inputArrInt[0] * inputArrInt[3]
    val val2 = inputArrInt[1] * inputArrInt[2]
    if (val1 <= val2) {
        val ans = inputArrInt[3] + (inputArrInt[3] * (inputArrInt[0].toDouble() / inputArrInt[1]))
        println(ans)
    } else {
        val ans = inputArrInt[2] + (inputArrInt[2] * (inputArrInt[1].toDouble() / inputArrInt[0]))
        println(ans)
    }
}
0