結果

問題 No.24 数当てゲーム
ユーザー kajikaji
提出日時 2018-09-22 17:11:24
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 343 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 12,134 ms
コンパイル使用メモリ 430,432 KB
実行使用メモリ 52,196 KB
最終ジャッジ日時 2024-11-20 16:47:56
合計ジャッジ時間 16,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
51,980 KB
testcase_01 AC 329 ms
52,048 KB
testcase_02 AC 326 ms
52,160 KB
testcase_03 AC 332 ms
52,156 KB
testcase_04 AC 331 ms
51,856 KB
testcase_05 AC 336 ms
51,972 KB
testcase_06 AC 332 ms
52,112 KB
testcase_07 AC 331 ms
52,172 KB
testcase_08 AC 325 ms
51,928 KB
testcase_09 AC 327 ms
52,196 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val turns = readLine()!!.toInt()
    var remains = (0..9).toSet()

    for (i in 1..turns) {
        val line = readLine()!!.split(" ")
        val nums = line.take(4).map(String::toInt)

        if (line.last() == "NO") {
            remains -= nums
        } else {
            remains = remains.intersect(nums)
        }
        if (remains.size == 1) {
            remains.forEach(::println)
            return
        }
    }
}
0