結果

問題 No.24 数当てゲーム
ユーザー kajikaji
提出日時 2018-09-22 17:11:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 315 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 11,414 ms
コンパイル使用メモリ 437,732 KB
実行使用メモリ 57,196 KB
最終ジャッジ日時 2024-04-30 19:15:38
合計ジャッジ時間 15,385 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
56,952 KB
testcase_01 AC 309 ms
57,040 KB
testcase_02 AC 315 ms
57,088 KB
testcase_03 AC 314 ms
56,868 KB
testcase_04 AC 307 ms
56,960 KB
testcase_05 AC 304 ms
57,088 KB
testcase_06 AC 304 ms
56,968 KB
testcase_07 AC 306 ms
57,196 KB
testcase_08 AC 309 ms
57,012 KB
testcase_09 AC 306 ms
56,960 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