結果

問題 No.178 美しいWhitespace (1)
ユーザー javyjavy
提出日時 2015-11-12 11:48:36
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 1,549 bytes
コンパイル時間 10,453 ms
コンパイル使用メモリ 442,928 KB
実行使用メモリ 52,640 KB
最終ジャッジ日時 2024-04-30 06:43:58
合計ジャッジ時間 19,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
51,924 KB
testcase_01 AC 268 ms
51,760 KB
testcase_02 AC 262 ms
51,696 KB
testcase_03 AC 265 ms
51,860 KB
testcase_04 AC 306 ms
52,336 KB
testcase_05 AC 304 ms
52,348 KB
testcase_06 AC 302 ms
52,340 KB
testcase_07 AC 265 ms
51,856 KB
testcase_08 AC 314 ms
52,516 KB
testcase_09 AC 306 ms
52,444 KB
testcase_10 AC 307 ms
52,492 KB
testcase_11 AC 265 ms
51,816 KB
testcase_12 AC 267 ms
51,724 KB
testcase_13 AC 298 ms
52,640 KB
testcase_14 AC 301 ms
52,328 KB
testcase_15 AC 308 ms
52,480 KB
testcase_16 AC 301 ms
52,500 KB
testcase_17 AC 312 ms
52,404 KB
testcase_18 AC 264 ms
51,724 KB
testcase_19 AC 302 ms
52,260 KB
testcase_20 AC 258 ms
51,812 KB
testcase_21 AC 310 ms
52,312 KB
testcase_22 AC 293 ms
52,304 KB
testcase_23 AC 305 ms
52,316 KB
testcase_24 AC 316 ms
52,528 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