結果

問題 No.24 数当てゲーム
ユーザー minokasagominokasago
提出日時 2019-11-02 11:41:26
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 328 ms / 5,000 ms
コード長 379 bytes
コンパイル時間 12,159 ms
コンパイル使用メモリ 427,416 KB
実行使用メモリ 51,820 KB
最終ジャッジ日時 2024-09-14 23:04:59
合計ジャッジ時間 16,673 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
51,720 KB
testcase_01 AC 317 ms
51,604 KB
testcase_02 AC 317 ms
51,692 KB
testcase_03 AC 317 ms
51,820 KB
testcase_04 AC 318 ms
51,636 KB
testcase_05 AC 328 ms
51,780 KB
testcase_06 AC 316 ms
51,796 KB
testcase_07 AC 320 ms
51,772 KB
testcase_08 AC 315 ms
51,792 KB
testcase_09 AC 318 ms
51,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main()
{
    val N = readLine()!!.toInt()
    var candidates = (0..9).toSet()
    repeat (N) {
        val line = readLine()!!.split(" ")
        val abcd = line.take(4).map(String::toInt)
        if (line.last() == "YES") {
            candidates = candidates.intersect(abcd)
        } else {
            candidates -= abcd
        }
    }
    println(candidates.first())
}
0