結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー 箱星箱星
提出日時 2021-01-22 22:01:26
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 454 ms / 1,000 ms
コード長 879 bytes
コンパイル時間 13,446 ms
コンパイル使用メモリ 440,544 KB
実行使用メモリ 61,480 KB
最終ジャッジ日時 2024-06-08 14:51:44
合計ジャッジ時間 27,750 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
50,960 KB
testcase_01 AC 282 ms
51,008 KB
testcase_02 AC 281 ms
50,980 KB
testcase_03 AC 281 ms
51,064 KB
testcase_04 AC 273 ms
50,816 KB
testcase_05 AC 280 ms
51,072 KB
testcase_06 AC 285 ms
50,988 KB
testcase_07 AC 283 ms
51,148 KB
testcase_08 AC 283 ms
51,020 KB
testcase_09 AC 283 ms
51,188 KB
testcase_10 AC 286 ms
50,984 KB
testcase_11 AC 282 ms
51,072 KB
testcase_12 AC 289 ms
51,008 KB
testcase_13 AC 446 ms
59,860 KB
testcase_14 AC 444 ms
59,180 KB
testcase_15 AC 343 ms
52,152 KB
testcase_16 AC 415 ms
55,388 KB
testcase_17 AC 433 ms
60,512 KB
testcase_18 AC 410 ms
56,696 KB
testcase_19 AC 437 ms
60,948 KB
testcase_20 AC 454 ms
57,824 KB
testcase_21 AC 418 ms
56,504 KB
testcase_22 AC 439 ms
59,692 KB
testcase_23 AC 429 ms
61,292 KB
testcase_24 AC 416 ms
61,232 KB
testcase_25 AC 434 ms
61,228 KB
testcase_26 AC 453 ms
61,340 KB
testcase_27 AC 418 ms
61,244 KB
testcase_28 AC 439 ms
61,096 KB
testcase_29 AC 430 ms
61,040 KB
testcase_30 AC 439 ms
61,228 KB
testcase_31 AC 431 ms
61,480 KB
testcase_32 AC 436 ms
61,168 KB
testcase_33 AC 412 ms
61,272 KB
testcase_34 AC 397 ms
61,076 KB
testcase_35 AC 279 ms
50,960 KB
testcase_36 AC 279 ms
51,056 KB
testcase_37 AC 279 ms
51,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val s = nextLine()
    val map = mutableMapOf<Char, Int>()
    for (c in s) {
        map[c] = (map[c] ?: 0) + 1
    }
    for (c in map.keys) {
        if (map[c]!! == 1) {
            print(s.indices.first { s[it] == c } + 1)
            print(" ")
            print(c)
            println()
        }
    }
}

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