結果

問題 No.159 刺さらないUSB
ユーザー javyjavy
提出日時 2015-11-12 12:01:03
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 330 ms / 1,000 ms
コード長 949 bytes
コンパイル時間 12,420 ms
コンパイル使用メモリ 437,776 KB
実行使用メモリ 55,300 KB
最終ジャッジ日時 2024-07-01 23:53:38
合計ジャッジ時間 19,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
55,300 KB
testcase_01 AC 319 ms
51,468 KB
testcase_02 AC 316 ms
51,316 KB
testcase_03 AC 311 ms
51,508 KB
testcase_04 AC 308 ms
51,564 KB
testcase_05 AC 309 ms
51,656 KB
testcase_06 AC 310 ms
51,416 KB
testcase_07 AC 308 ms
51,652 KB
testcase_08 AC 309 ms
51,604 KB
testcase_09 AC 310 ms
51,568 KB
testcase_10 AC 327 ms
51,384 KB
testcase_11 AC 324 ms
51,340 KB
testcase_12 AC 330 ms
51,616 KB
testcase_13 AC 309 ms
51,472 KB
testcase_14 AC 308 ms
51,544 KB
testcase_15 AC 309 ms
51,372 KB
testcase_16 AC 315 ms
51,736 KB
testcase_17 AC 313 ms
51,476 KB
testcase_18 AC 307 ms
51,488 KB
testcase_19 AC 308 ms
51,584 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 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 readLineDoubleArray() : List<Double> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toDouble() }
        return ret
    }
    val inputArrDouble = readLineDoubleArray()
    val p1 = (1-inputArrDouble[0]) * inputArrDouble[1]
    val p2 = inputArrDouble[0] * (1-inputArrDouble[1]) * inputArrDouble[1]
    if (p1 < p2) {
        println("YES")
    } else {
        println("NO")
    }

}
0