結果

問題 No.178 美しいWhitespace (1)
ユーザー javyjavy
提出日時 2015-11-12 11:48:36
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 1,549 bytes
コンパイル時間 13,591 ms
コンパイル使用メモリ 435,540 KB
実行使用メモリ 57,376 KB
最終ジャッジ日時 2024-11-19 20:42:10
合計ジャッジ時間 23,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
56,900 KB
testcase_01 AC 306 ms
56,732 KB
testcase_02 AC 311 ms
56,984 KB
testcase_03 AC 316 ms
56,864 KB
testcase_04 AC 370 ms
57,240 KB
testcase_05 AC 368 ms
57,176 KB
testcase_06 AC 372 ms
57,316 KB
testcase_07 AC 314 ms
56,848 KB
testcase_08 AC 367 ms
57,320 KB
testcase_09 AC 366 ms
57,308 KB
testcase_10 AC 370 ms
57,236 KB
testcase_11 AC 317 ms
56,976 KB
testcase_12 AC 320 ms
56,988 KB
testcase_13 AC 370 ms
57,320 KB
testcase_14 AC 370 ms
57,268 KB
testcase_15 AC 368 ms
57,260 KB
testcase_16 AC 366 ms
57,272 KB
testcase_17 AC 368 ms
57,268 KB
testcase_18 AC 308 ms
56,888 KB
testcase_19 AC 370 ms
57,348 KB
testcase_20 AC 314 ms
56,936 KB
testcase_21 AC 366 ms
57,136 KB
testcase_22 AC 348 ms
57,264 KB
testcase_23 AC 372 ms
57,376 KB
testcase_24 AC 369 ms
57,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:29:33: warning: no cast needed
    var countSpace = 0.toLong() as Long
                                ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/12.
 */
fun main(args: Array<String>) {
    fun readLineLongArray() : List<Long> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toLong() }
        return ret
    }
    fun readLineLong() : Long {
        val str = readLine() as String
        return str.toLong()
    }
    fun readLineInt() : Int {
        val str = readLine() as String
        return str.toInt()
    }
    fun readLineIntArray() : List<Int> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toInt() }
        return ret
    }

    val num = readLineInt()
    var countSpace = 0.toLong() as Long
    var maxNum = Integer.MIN_VALUE
    for (i in 0..(num-1)) {
        val inputArrInt = readLineIntArray()
        val lenLine = inputArrInt[0] + inputArrInt[1] * 4
        if (maxNum == Integer.MIN_VALUE) {
            maxNum = lenLine
        } else if (maxNum == lenLine) {
        } else if (maxNum > lenLine) {
            if (maxNum % 2 == lenLine % 2) {
                countSpace += ((maxNum - lenLine) / 2).toLong()
            } else {
                println(-1)
                return
            }
        } else {
            if (maxNum % 2 == lenLine % 2) {
                countSpace += ((lenLine - maxNum) * i / 2).toLong()
                maxNum = lenLine
            } else {
                println(-1)
                return
            }
        }
    }
    println(countSpace)
}
0