結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー 👑 はまやんはまやんはまやんはまやん
提出日時 2017-06-02 22:25:31
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,809 ms / 2,000 ms
コード長 3,227 bytes
コンパイル時間 15,281 ms
コンパイル使用メモリ 425,216 KB
実行使用メモリ 59,804 KB
最終ジャッジ日時 2023-08-12 18:50:00
合計ジャッジ時間 25,520 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
52,616 KB
testcase_01 AC 474 ms
59,628 KB
testcase_02 AC 450 ms
59,404 KB
testcase_03 AC 581 ms
59,768 KB
testcase_04 AC 245 ms
50,016 KB
testcase_05 AC 261 ms
50,060 KB
testcase_06 AC 243 ms
50,096 KB
testcase_07 AC 258 ms
50,188 KB
testcase_08 AC 307 ms
52,596 KB
testcase_09 AC 534 ms
59,536 KB
testcase_10 AC 1,809 ms
59,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:12:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:86:22: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
        if (b == '-'.toInt()) {
                     ^
Main.kt:90: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:90: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:94: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:94: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:96: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()

    for(a in 1..N) for(b in a..N) {
        var c = N - (a + b)
        if(c < b) continue
        println("${a} ${b} ${c}")
    }
}





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