結果

問題 No.1110 好きな歌
ユーザー 箱星箱星
提出日時 2020-07-10 21:34:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,325 ms / 5,000 ms
コード長 1,245 bytes
コンパイル時間 13,428 ms
コンパイル使用メモリ 429,636 KB
実行使用メモリ 92,164 KB
最終ジャッジ日時 2024-10-11 08:08:21
合計ジャッジ時間 56,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
54,196 KB
testcase_01 AC 316 ms
54,164 KB
testcase_02 AC 317 ms
54,076 KB
testcase_03 AC 317 ms
54,032 KB
testcase_04 AC 316 ms
53,972 KB
testcase_05 AC 314 ms
54,080 KB
testcase_06 AC 313 ms
54,000 KB
testcase_07 AC 312 ms
54,156 KB
testcase_08 AC 315 ms
54,176 KB
testcase_09 AC 313 ms
53,904 KB
testcase_10 AC 315 ms
54,200 KB
testcase_11 AC 319 ms
54,156 KB
testcase_12 AC 314 ms
54,220 KB
testcase_13 AC 314 ms
54,156 KB
testcase_14 AC 342 ms
54,408 KB
testcase_15 AC 340 ms
54,364 KB
testcase_16 AC 343 ms
54,412 KB
testcase_17 AC 347 ms
54,432 KB
testcase_18 AC 316 ms
54,144 KB
testcase_19 AC 342 ms
54,432 KB
testcase_20 AC 337 ms
54,260 KB
testcase_21 AC 331 ms
54,256 KB
testcase_22 AC 339 ms
54,472 KB
testcase_23 AC 326 ms
54,348 KB
testcase_24 AC 966 ms
79,776 KB
testcase_25 AC 1,100 ms
88,052 KB
testcase_26 AC 787 ms
72,364 KB
testcase_27 AC 1,122 ms
84,672 KB
testcase_28 AC 809 ms
74,348 KB
testcase_29 AC 1,243 ms
90,744 KB
testcase_30 AC 796 ms
74,448 KB
testcase_31 AC 709 ms
68,012 KB
testcase_32 AC 1,325 ms
91,592 KB
testcase_33 AC 801 ms
76,416 KB
testcase_34 AC 1,074 ms
81,424 KB
testcase_35 AC 1,205 ms
90,776 KB
testcase_36 AC 551 ms
60,972 KB
testcase_37 AC 739 ms
69,404 KB
testcase_38 AC 1,242 ms
91,164 KB
testcase_39 AC 963 ms
79,708 KB
testcase_40 AC 1,188 ms
90,172 KB
testcase_41 AC 512 ms
58,700 KB
testcase_42 AC 1,208 ms
92,164 KB
testcase_43 AC 1,215 ms
90,580 KB
testcase_44 AC 1,240 ms
91,000 KB
testcase_45 AC 1,299 ms
90,344 KB
testcase_46 AC 1,165 ms
90,800 KB
testcase_47 AC 1,261 ms
90,972 KB
testcase_48 AC 1,226 ms
90,864 KB
testcase_49 AC 1,165 ms
90,904 KB
testcase_50 AC 1,242 ms
90,768 KB
testcase_51 AC 1,146 ms
90,640 KB
testcase_52 AC 1,283 ms
90,684 KB
testcase_53 AC 1,244 ms
90,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.io.PrintWriter
import java.util.*

fun PrintWriter.solve(sc: FastScanner) {
    val n = sc.nextInt()
    val d = sc.nextInt()
    val a = mutableListOf<Int>()
    a.add(-1)
    for (i in 0 until n) {
        a.add(sc.nextInt())
    }
    val b = a.sorted()
    for (i in 0 until n) {
        val v = a[i + 1] - d
        var l = 0
        var r = n + 1
        while (r - l > 1) {
            val mid = (l + r) / 2
            if (b[mid] <= v) {
                l = mid
            } else {
                r = mid
            }
        }
        println(l)
    }
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve(FastScanner(System.`in`))
    writer.flush()
}

class FastScanner(s: InputStream) {
    private var st = StringTokenizer("")
    private val br = BufferedReader(InputStreamReader(s))

    fun next(): String {
        while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())

        return st.nextToken()
    }

    fun nextInt() = next().toInt()
    fun nextLong() = next().toLong()
    fun nextLine() = br.readLine()
    fun nextDouble() = next().toDouble()
    fun ready() = br.ready()
}
0