結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー qszhuqszhu
提出日時 2022-10-07 16:54:48
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 376 ms / 1,000 ms
コード長 728 bytes
コンパイル時間 13,733 ms
コンパイル使用メモリ 434,396 KB
実行使用メモリ 61,840 KB
最終ジャッジ日時 2024-06-11 23:54:05
合計ジャッジ時間 27,045 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
58,892 KB
testcase_01 AC 292 ms
59,088 KB
testcase_02 AC 270 ms
59,108 KB
testcase_03 AC 270 ms
59,052 KB
testcase_04 AC 273 ms
59,036 KB
testcase_05 AC 297 ms
58,968 KB
testcase_06 AC 270 ms
58,972 KB
testcase_07 AC 269 ms
58,908 KB
testcase_08 AC 270 ms
58,896 KB
testcase_09 AC 271 ms
58,976 KB
testcase_10 AC 272 ms
58,992 KB
testcase_11 AC 263 ms
58,976 KB
testcase_12 AC 270 ms
59,156 KB
testcase_13 AC 375 ms
61,688 KB
testcase_14 AC 315 ms
61,840 KB
testcase_15 AC 275 ms
58,972 KB
testcase_16 AC 311 ms
59,672 KB
testcase_17 AC 366 ms
61,504 KB
testcase_18 AC 345 ms
59,664 KB
testcase_19 AC 376 ms
61,612 KB
testcase_20 AC 322 ms
61,628 KB
testcase_21 AC 327 ms
59,740 KB
testcase_22 AC 312 ms
61,684 KB
testcase_23 AC 357 ms
61,612 KB
testcase_24 AC 373 ms
61,616 KB
testcase_25 AC 332 ms
61,676 KB
testcase_26 AC 350 ms
61,644 KB
testcase_27 AC 329 ms
61,688 KB
testcase_28 AC 329 ms
61,732 KB
testcase_29 AC 322 ms
61,616 KB
testcase_30 AC 323 ms
61,664 KB
testcase_31 AC 328 ms
61,604 KB
testcase_32 AC 328 ms
61,544 KB
testcase_33 AC 324 ms
61,720 KB
testcase_34 AC 325 ms
61,728 KB
testcase_35 AC 283 ms
58,936 KB
testcase_36 AC 269 ms
58,904 KB
testcase_37 AC 261 ms
59,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.system.exitProcess

val br = System.`in`.bufferedReader()

fun readLine(): String? = br.readLine()
fun readString() = readLine()!!

const val MAX_STACK_SIZE: Long = 128 * 1024 * 1024

fun main() {
    val thread = Thread(null, ::run, "solve", MAX_STACK_SIZE)
    thread.setUncaughtExceptionHandler { _, e -> e.printStackTrace(); exitProcess(1) }
    thread.start()
}

fun run() {
    val S = readString()
    output(solve(S))
}

fun solve(S: String): Pair<Int, Char> {
    if (S[0] == S[1]) {
        for (i in 2..S.lastIndex) if (S[i] != S[0]) return i + 1 to S[i]
    }
    if (S[0] == S.last()) return 2 to S[1]
    return 1 to S[0]
}

fun output(res: Pair<Int, Char>) = res.apply { println("$first $second") }
0