結果

問題 No.1282 Display Elements
ユーザー rutilicusrutilicus
提出日時 2020-11-07 22:14:43
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,434 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 14,382 ms
コンパイル使用メモリ 442,564 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-07-22 14:52:41
合計ジャッジ時間 32,951 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 353 ms
60,424 KB
testcase_01 AC 344 ms
60,120 KB
testcase_02 AC 349 ms
60,228 KB
testcase_03 AC 334 ms
57,100 KB
testcase_04 AC 343 ms
60,112 KB
testcase_05 AC 349 ms
60,400 KB
testcase_06 AC 334 ms
57,004 KB
testcase_07 AC 350 ms
60,220 KB
testcase_08 AC 347 ms
60,188 KB
testcase_09 AC 346 ms
59,996 KB
testcase_10 AC 407 ms
60,512 KB
testcase_11 AC 397 ms
60,340 KB
testcase_12 AC 359 ms
60,536 KB
testcase_13 AC 390 ms
60,592 KB
testcase_14 AC 395 ms
60,396 KB
testcase_15 AC 1,268 ms
92,412 KB
testcase_16 AC 887 ms
77,404 KB
testcase_17 AC 1,135 ms
92,288 KB
testcase_18 AC 907 ms
79,808 KB
testcase_19 AC 1,433 ms
101,760 KB
testcase_20 AC 1,434 ms
100,764 KB
testcase_21 AC 1,413 ms
97,368 KB
testcase_22 AC 1,269 ms
98,548 KB
testcase_23 AC 1,420 ms
97,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:19:13: warning: 'appendln(Long): 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(ans)
            ^

ソースコード

diff #

import java.util.*

fun main() {
    val builder = StringBuilder()

    readInputLine()

    val aList = readInputLine().split(" ").map { it.toInt() }.sorted()
    val bArr = readInputLine().split(" ").map { it.toInt() }.toIntArray()
    val bListSorted = mutableListOf<Int>()

    var ans = 0L

    for ((i, a) in aList.withIndex()) {
        bListSorted.add(lowerBound(bListSorted, bArr[i]), bArr[i])
        ans += lowerBound(bListSorted, a).toLong()
    }

    builder.appendln(ans)

    print(builder.toString())
}

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

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