結果

問題 No.1617 Palindrome Removal
ユーザー 箱星箱星
提出日時 2021-07-22 21:29:41
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 837 bytes
コンパイル時間 13,313 ms
コンパイル使用メモリ 437,872 KB
実行使用メモリ 69,512 KB
最終ジャッジ日時 2024-07-17 16:32:55
合計ジャッジ時間 24,856 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 466 ms
69,348 KB
testcase_01 AC 467 ms
69,500 KB
testcase_02 AC 484 ms
69,352 KB
testcase_03 AC 490 ms
69,512 KB
testcase_04 AC 480 ms
69,444 KB
testcase_05 AC 469 ms
67,256 KB
testcase_06 AC 379 ms
61,648 KB
testcase_07 AC 369 ms
61,460 KB
testcase_08 AC 304 ms
56,908 KB
testcase_09 AC 303 ms
56,756 KB
testcase_10 AC 470 ms
67,144 KB
testcase_11 AC 467 ms
67,440 KB
testcase_12 AC 468 ms
69,496 KB
testcase_13 AC 472 ms
69,416 KB
testcase_14 AC 335 ms
60,540 KB
testcase_15 AC 298 ms
56,716 KB
testcase_16 AC 335 ms
60,428 KB
testcase_17 AC 328 ms
60,488 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 326 ms
60,448 KB
testcase_21 AC 335 ms
60,432 KB
testcase_22 AC 335 ms
60,572 KB
testcase_23 AC 331 ms
60,504 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) {
        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