結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー 👑 はまやんはまやんはまやんはまやん
提出日時 2017-06-02 22:31:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 3,287 bytes
コンパイル時間 14,650 ms
コンパイル使用メモリ 430,196 KB
実行使用メモリ 50,432 KB
最終ジャッジ日時 2023-08-12 18:57:07
合計ジャッジ時間 23,724 ms
ジャッジサーバーID
(参考情報)
judge10 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
50,256 KB
testcase_01 AC 262 ms
50,208 KB
testcase_02 AC 263 ms
50,232 KB
testcase_03 AC 263 ms
50,296 KB
testcase_04 AC 265 ms
50,068 KB
testcase_05 AC 260 ms
50,092 KB
testcase_06 AC 263 ms
50,204 KB
testcase_07 AC 261 ms
50,156 KB
testcase_08 AC 260 ms
49,952 KB
testcase_09 AC 262 ms
50,256 KB
testcase_10 AC 264 ms
50,432 KB
testcase_11 AC 263 ms
50,076 KB
testcase_12 AC 261 ms
50,032 KB
testcase_13 AC 262 ms
50,236 KB
testcase_14 AC 266 ms
50,080 KB
testcase_15 AC 263 ms
50,156 KB
testcase_16 AC 260 ms
50,084 KB
testcase_17 AC 262 ms
50,168 KB
testcase_18 AC 260 ms
50,088 KB
testcase_19 AC 259 ms
50,124 KB
testcase_20 AC 261 ms
50,356 KB
testcase_21 AC 266 ms
50,032 KB
testcase_22 AC 260 ms
50,260 KB
testcase_23 AC 261 ms
49,988 KB
testcase_24 AC 262 ms
50,244 KB
testcase_25 AC 261 ms
50,156 KB
testcase_26 AC 261 ms
49,988 KB
testcase_27 AC 262 ms
50,068 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:12:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:87:22: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
        if (b == '-'.toInt()) {
                     ^
Main.kt:91:21: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
        if (b < '0'.toInt() || '9'.toInt() < b) {
                    ^
Main.kt:91:36: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
        if (b < '0'.toInt() || '9'.toInt() < b) {
                                   ^
Main.kt:95:21: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
            if ('0'.toInt() <= b && b <= '9'.toInt()) {
                    ^
Main.kt:95:46: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
            if ('0'.toInt() <= b && b <= '9'.toInt()) {
                                             ^
Main.kt:97:31: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
                n += (b - '0'.toInt()).toLong()
                              ^

ソースコード

diff #

import java.util.*
import java.util.NoSuchElementException
import java.io.IOException
import java.util.PriorityQueue
import java.util.Arrays
import java.util.ArrayList



var sc : FastScanner = FastScanner()

fun main(args: Array<String>) {
    var N = sc.nextInt()
    var K = sc.nextInt()

    if(K == 0 || K > N) println("0")
    else {
        if(N % 2 == 1 && (N + 1) / 2 == K) println((N - 1).toString())
        else println((N - 2).toString())
    }
}





class FastScanner {
    private val `in` = System.`in`
    private val buffer = ByteArray(1024)
    private var ptr = 0
    private var bufferLength = 0

    private fun hasNextByte(): Boolean {
        if (ptr < bufferLength) {
            return true
        } else {
            ptr = 0
            try {
                bufferLength = `in`.read(buffer)
            } catch (e: IOException) {
                e.printStackTrace()
            }

            if (bufferLength <= 0) {
                return false
            }
        }
        return true
    }

    private fun readByte(): Int {
        if (hasNextByte())
            return buffer[ptr++].toInt()
        else
            return -1
    }

    private fun isPrintableChar(c: Int): Boolean {
        return 33 <= c && c <= 126
    }

    private fun skipUnprintable() {
        while (hasNextByte() && !isPrintableChar(buffer[ptr].toInt())) ptr++
    }

    internal operator fun hasNext(): Boolean {
        skipUnprintable()
        return hasNextByte()
    }

    operator fun next(): String {
        if (!hasNext()) throw NoSuchElementException()
        val sb = StringBuilder()
        var b = readByte()
        while (isPrintableChar(b)) {
            sb.appendCodePoint(b)
            b = readByte()
        }
        return sb.toString()
    }

    internal fun nextLong(): Long {
        if (!hasNext()) throw NoSuchElementException()
        var n: Long = 0
        var minus = false
        var b = readByte()
        if (b == '-'.toInt()) {
            minus = true
            b = readByte()
        }
        if (b < '0'.toInt() || '9'.toInt() < b) {
            throw NumberFormatException()
        }
        while (true) {
            if ('0'.toInt() <= b && b <= '9'.toInt()) {
                n *= 10
                n += (b - '0'.toInt()).toLong()
            } else if (b == -1 || !isPrintableChar(b)) {
                return if (minus) -n else n
            } else {
                throw NumberFormatException()
            }
            b = readByte()
        }
    }

    internal fun nextDouble(): Double {
        return java.lang.Double.parseDouble(next())
    }

    internal fun nextDoubleArray(n: Int): DoubleArray {
        val array = DoubleArray(n)
        for (i in 0..n - 1) {
            array[i] = nextDouble()
        }
        return array
    }

    internal fun nextDoubleMap(n: Int, m: Int): Array<DoubleArray?> {
        val map = arrayOfNulls<DoubleArray?>(n)
        for (i in 0..n - 1) {
            map[i] = nextDoubleArray(m)
        }
        return map
    }

    fun nextInt(): Int {
        return nextLong().toInt()
    }

    fun nextIntArray(n: Int): IntArray {
        val array = IntArray(n)
        for (i in 0..n - 1) {
            array[i] = nextInt()
        }
        return array
    }
}
0