結果

問題 No.1617 Palindrome Removal
ユーザー 箱星
提出日時 2021-07-22 21:29:41
言語 Kotlin
(2.1.0)
結果
WA  
実行時間 -
コード長 837 bytes
コンパイル時間 13,313 ms
コンパイル使用メモリ 437,872 KB
実行使用メモリ 69,512 KB
最終ジャッジ日時 2024-07-17 16:32:55
合計ジャッジ時間 24,856 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 18 WA * 2
権限があれば一括ダウンロードができます

ソースコード

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) {
        println(s.length - 2)
    } 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