結果

問題 No.273 回文分解
ユーザー javyjavy
提出日時 2015-11-28 03:31:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 1,783 bytes
コンパイル時間 13,545 ms
コンパイル使用メモリ 445,744 KB
実行使用メモリ 51,100 KB
最終ジャッジ日時 2024-11-20 04:40:40
合計ジャッジ時間 25,989 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
50,784 KB
testcase_01 AC 309 ms
50,852 KB
testcase_02 AC 307 ms
51,100 KB
testcase_03 AC 306 ms
51,012 KB
testcase_04 AC 314 ms
50,840 KB
testcase_05 AC 309 ms
50,948 KB
testcase_06 AC 305 ms
50,816 KB
testcase_07 AC 309 ms
51,048 KB
testcase_08 AC 311 ms
50,744 KB
testcase_09 AC 306 ms
51,052 KB
testcase_10 AC 304 ms
50,780 KB
testcase_11 AC 307 ms
50,828 KB
testcase_12 AC 313 ms
51,008 KB
testcase_13 AC 307 ms
50,848 KB
testcase_14 AC 306 ms
50,964 KB
testcase_15 AC 311 ms
50,760 KB
testcase_16 AC 310 ms
50,836 KB
testcase_17 AC 306 ms
50,928 KB
testcase_18 AC 310 ms
50,940 KB
testcase_19 AC 306 ms
50,844 KB
testcase_20 AC 310 ms
50,920 KB
testcase_21 AC 303 ms
51,092 KB
testcase_22 AC 306 ms
50,856 KB
testcase_23 AC 301 ms
51,004 KB
testcase_24 AC 307 ms
50,908 KB
testcase_25 AC 307 ms
50,996 KB
testcase_26 AC 318 ms
51,008 KB
testcase_27 AC 314 ms
50,876 KB
testcase_28 AC 304 ms
51,088 KB
testcase_29 AC 308 ms
51,100 KB
testcase_30 AC 311 ms
50,988 KB
testcase_31 AC 304 ms
50,864 KB
testcase_32 AC 313 ms
50,792 KB
testcase_33 AC 306 ms
50,852 KB
testcase_34 AC 300 ms
50,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:49:14: warning: variable 'ch' is never used
    for ((i, ch) in inputStr.withIndex()) {
             ^

ソースコード

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
    }

    fun readLineDoubleArray(): List<Double> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toDouble() }
        return ret
    }

    fun checkKai(str : String , startIndex : Int, endIndex : Int) : Boolean{
        for (i in 0..((endIndex-startIndex)/2)) {
            if (str.get(startIndex+i) != str.get(endIndex-i)) {
                return false
            }
        }
        return true
    }

    val inputStr = readLine() as String
    var maxI = Int.MIN_VALUE
    for ((i, ch) in inputStr.withIndex()) {
//    var lastIndex = inputStr.length
        var lastIndex = if (i != 0) inputStr.length else inputStr.length-1
        do {
            lastIndex = inputStr.lastIndexOf(inputStr[i], lastIndex-1)
            if (checkKai(inputStr, i, lastIndex)) {
//                println((lastIndex-i).toString() + " " + i + " " + lastIndex)
                if (maxI <= (lastIndex-i)) {
                    maxI = lastIndex-i+1
                }
                break
            }
        } while (i < lastIndex)
    }
    println(maxI)
}
0