結果

問題 No.2153 何コーダーが何人?
ユーザー 箱星箱星
提出日時 2022-12-09 21:22:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 1,034 bytes
コンパイル時間 15,560 ms
コンパイル使用メモリ 443,584 KB
実行使用メモリ 53,264 KB
最終ジャッジ日時 2024-10-14 19:00:05
合計ジャッジ時間 24,829 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
52,264 KB
testcase_01 AC 346 ms
52,644 KB
testcase_02 AC 352 ms
52,728 KB
testcase_03 AC 398 ms
53,232 KB
testcase_04 AC 388 ms
53,040 KB
testcase_05 AC 394 ms
53,048 KB
testcase_06 AC 397 ms
53,116 KB
testcase_07 AC 395 ms
53,244 KB
testcase_08 AC 356 ms
52,588 KB
testcase_09 AC 397 ms
53,264 KB
testcase_10 AC 365 ms
52,724 KB
testcase_11 AC 401 ms
53,188 KB
testcase_12 AC 355 ms
52,468 KB
testcase_13 AC 398 ms
53,172 KB
testcase_14 AC 367 ms
52,752 KB
testcase_15 AC 359 ms
52,600 KB
testcase_16 AC 397 ms
53,040 KB
testcase_17 AC 404 ms
52,880 KB
testcase_18 AC 397 ms
53,116 KB
testcase_19 AC 338 ms
52,244 KB
testcase_20 AC 324 ms
52,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val map = mutableMapOf<String, Int>()
    val n = nextInt()
    for (i in 0 until n) {
        val s = next()
        val c = nextInt()
        map[s] = c
    }
    val ans = (0..7).map { i -> map.values.count { it == i } }
    println(ans.joinToString("\n"))
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// 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