結果

問題 No.24 数当てゲーム
ユーザー kajikaji
提出日時 2018-09-22 17:09:32
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 14,066 ms
コンパイル使用メモリ 437,748 KB
実行使用メモリ 57,084 KB
最終ジャッジ日時 2024-11-20 16:46:36
合計ジャッジ時間 18,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
57,084 KB
testcase_01 AC 357 ms
57,008 KB
testcase_02 AC 357 ms
56,960 KB
testcase_03 AC 349 ms
57,080 KB
testcase_04 AC 351 ms
57,056 KB
testcase_05 WA -
testcase_06 AC 350 ms
57,064 KB
testcase_07 AC 351 ms
57,004 KB
testcase_08 AC 346 ms
57,004 KB
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

const val NO = "NO"

fun main(args: Array<String>) {
    val turns = readLine()!!.toInt()
    var remains = (1..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