結果

問題 No.1617 Palindrome Removal
ユーザー 箱星箱星
提出日時 2021-07-22 21:32:32
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 485 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 16,739 ms
コンパイル使用メモリ 432,424 KB
実行使用メモリ 66,988 KB
最終ジャッジ日時 2024-07-17 16:40:04
合計ジャッジ時間 22,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 466 ms
66,844 KB
testcase_01 AC 470 ms
66,988 KB
testcase_02 AC 485 ms
66,752 KB
testcase_03 AC 485 ms
66,884 KB
testcase_04 AC 475 ms
66,912 KB
testcase_05 AC 470 ms
65,928 KB
testcase_06 AC 373 ms
56,748 KB
testcase_07 AC 375 ms
55,552 KB
testcase_08 AC 307 ms
50,840 KB
testcase_09 AC 301 ms
50,884 KB
testcase_10 AC 472 ms
62,760 KB
testcase_11 AC 476 ms
62,112 KB
testcase_12 AC 479 ms
63,244 KB
testcase_13 AC 476 ms
63,348 KB
testcase_14 AC 335 ms
55,756 KB
testcase_15 AC 296 ms
50,864 KB
testcase_16 AC 334 ms
55,548 KB
testcase_17 AC 339 ms
55,624 KB
testcase_18 AC 336 ms
55,588 KB
testcase_19 AC 329 ms
55,808 KB
testcase_20 AC 336 ms
55,532 KB
testcase_21 AC 338 ms
55,672 KB
testcase_22 AC 335 ms
55,712 KB
testcase_23 AC 334 ms
55,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val s = nextLine()
    val t = s.reversed()
    if (s != t) {
        println(s.length)
    } else if (s.toCharArray().distinct().count() > 1) {
        if (s.length != 3) {
            println(s.length - 2)
        } else {
            println(-1)
        }
    } else if (s.length % 2 == 0) {
        println(0)
    } else {
        println(-1)
    }
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0