結果

問題 No.1280 Beyond C
ユーザー rutilicusrutilicus
提出日時 2020-11-07 21:21:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 839 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 11,914 ms
コンパイル使用メモリ 452,200 KB
実行使用メモリ 93,240 KB
最終ジャッジ日時 2024-07-22 14:50:20
合計ジャッジ時間 23,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
60,356 KB
testcase_01 AC 287 ms
60,224 KB
testcase_02 AC 271 ms
56,760 KB
testcase_03 AC 277 ms
56,772 KB
testcase_04 AC 291 ms
60,180 KB
testcase_05 AC 285 ms
60,180 KB
testcase_06 AC 286 ms
60,168 KB
testcase_07 AC 285 ms
60,208 KB
testcase_08 AC 299 ms
60,272 KB
testcase_09 AC 291 ms
60,172 KB
testcase_10 AC 281 ms
60,184 KB
testcase_11 AC 322 ms
60,692 KB
testcase_12 AC 290 ms
60,256 KB
testcase_13 AC 318 ms
60,608 KB
testcase_14 AC 318 ms
60,508 KB
testcase_15 AC 688 ms
81,024 KB
testcase_16 AC 656 ms
74,104 KB
testcase_17 AC 707 ms
77,900 KB
testcase_18 AC 688 ms
92,516 KB
testcase_19 AC 707 ms
92,884 KB
testcase_20 AC 832 ms
93,240 KB
testcase_21 AC 823 ms
93,112 KB
testcase_22 AC 839 ms
93,164 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:17:13: warning: 'appendln(Double): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(cnt.toDouble() / (n * m).toDouble())
            ^

ソースコード

diff #

import java.util.*

fun main() {
    val builder = StringBuilder()

    val (n, m, c) = readInputLine().split(" ").map { it.toLong() }

    val aList = readInputLine().split(" ").map { it.toLong() }
    val bList = readInputLine().split(" ").map { it.toLong() }.sorted()

    var cnt = 0L

    for (a in aList) {
        cnt += m - upperBound(bList, c / a).toLong()
    }

    builder.appendln(cnt.toDouble() / (n * m).toDouble())

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}

fun <T: Comparable<T>> upperBound(list: List<T>, value: T): Int {
    return Collections.binarySearch(list, value, {x, y -> if (x > y) 1 else -1}).inv()
}
0