結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
57,012 KB
testcase_01 AC 310 ms
57,100 KB
testcase_02 AC 308 ms
56,936 KB
testcase_03 AC 309 ms
57,096 KB
testcase_04 AC 308 ms
56,948 KB
testcase_05 WA -
testcase_06 AC 312 ms
56,960 KB
testcase_07 AC 313 ms
57,052 KB
testcase_08 AC 311 ms
56,964 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