結果

問題 No.885 アマリクエリ
ユーザー へのくへのく
提出日時 2019-09-13 23:01:48
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 2,849 bytes
コンパイル時間 16,085 ms
コンパイル使用メモリ 458,732 KB
実行使用メモリ 100,280 KB
最終ジャッジ日時 2024-07-04 10:18:57
合計ジャッジ時間 29,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 485 ms
68,464 KB
testcase_01 WA -
testcase_02 AC 726 ms
85,304 KB
testcase_03 AC 493 ms
70,716 KB
testcase_04 AC 491 ms
70,680 KB
testcase_05 AC 480 ms
68,524 KB
testcase_06 AC 469 ms
66,328 KB
testcase_07 AC 413 ms
68,460 KB
testcase_08 AC 488 ms
69,208 KB
testcase_09 WA -
testcase_10 AC 315 ms
57,744 KB
testcase_11 AC 308 ms
57,636 KB
testcase_12 AC 312 ms
57,624 KB
testcase_13 AC 367 ms
60,284 KB
testcase_14 AC 364 ms
60,284 KB
testcase_15 AC 361 ms
60,180 KB
testcase_16 AC 339 ms
60,052 KB
testcase_17 AC 342 ms
60,100 KB
testcase_18 AC 351 ms
60,136 KB
testcase_19 AC 327 ms
60,036 KB
testcase_20 AC 328 ms
57,876 KB
testcase_21 AC 337 ms
60,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) = IO().exec {
         ^
Main.kt:64:22: warning: 'toByte(): Byte' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
        if (b == '-'.toByte()) {
                     ^
Main.kt:68:23: warning: 'toByte(): Byte' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
        if (b !in '0'.toByte()..'9'.toByte()) {
                      ^
Main.kt:68:37: warning: 'toByte(): Byte' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
        if (b !in '0'.toByte()..'9'.toByte()) {
                                    ^
Main.kt:72:26: warning: 'toByte(): Byte' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
            if (b in '0'.toByte()..'9'.toByte()) {
                         ^
Main.kt:72:40: warning: 'toByte(): Byte' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
            if (b in '0'.toByte()..'9'.toByte()) {
                                       ^
Main.kt:74:30: warning: 'toByte(): Byte' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
                n += b - '0'.toByte()
                             ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) = IO().exec {
    val n = int()
    val a = LongArray(n){long()}
    val q = int()
    val x = LongArray(q){long()}
    val tmap = TreeMap<Long, Int>()
    for (p in a) {
        tmap[p] = (tmap[p] ?: 0) + 1
    }
    var sum = a.sum()
    for (r in x) {
        var key = r - 1
        while (true) {
            val k = tmap.higherKey(key) ?: break
            val v = tmap[k]!!
            sum -= (k / r) * r * v
            tmap.remove(k)
            if (k % r != 0L) tmap[k % r] = v
            key = k
        }
        println(sum)
    }
}

// region template
operator fun Int.iterator() = 0.until(this).iterator()

class IO {
    val printable = 33..126
    val buffer = ByteArray(1024)
    var ptr = 0
    var buflen = 0
    val out = java.io.PrintWriter(System.out)
    fun hasNextByte(): Boolean = if (ptr < buflen) true else {
        ptr = 0
        buflen = System.`in`.read(buffer)
        buflen > 0
    }

    fun readByte(): Byte = if (hasNextByte()) buffer[ptr++] else -1
    fun hasNext(): Boolean {
        while (hasNextByte() && buffer[ptr] !in printable) ptr++
        return hasNextByte()
    }

    fun string(): String {
        if (!hasNext()) throw java.util.NoSuchElementException()
        val sb = StringBuilder()
        var b = readByte()
        while (b in printable) {
            sb.appendCodePoint(b.toInt())
            b = readByte()
        }
        return sb.toString()
    }

    fun long(): Long {
        if (!hasNext()) throw java.util.NoSuchElementException()
        var n = 0L
        var minus = false
        var b = readByte()
        if (b == '-'.toByte()) {
            minus = true
            b = readByte()
        }
        if (b !in '0'.toByte()..'9'.toByte()) {
            throw NumberFormatException()
        }
        while (true) {
            if (b in '0'.toByte()..'9'.toByte()) {
                n *= 10
                n += b - '0'.toByte()
            } else if (b == (-1).toByte() || b !in printable) {
                return if (minus) -n else n
            } else {
                throw NumberFormatException()
            }
            b = readByte()
        }
    }

    fun int(): Int {
        val nl = long()
        if (nl !in Integer.MIN_VALUE..Integer.MAX_VALUE) throw NumberFormatException()
        return nl.toInt()
    }

    fun double(): Double = string().toDouble()
    fun print(obj: Any) = out.print(obj)
    fun print(i: Int) = out.print(i)
    fun print(l: Long) = out.print(l)
    fun println(obj: Any) = out.println(obj)
    fun println(i: Int) = out.println(i)
    fun println(l: Long) = out.println(l)
    inline fun exec(block: IO.() -> Unit) {
        block()
        out.flush()
    }

    inline fun println(block: IO.() -> Any) {
        println(block())
        out.flush()
    }
}
// endregion
0