結果
問題 | No.24 数当てゲーム |
ユーザー | バカらっく |
提出日時 | 2019-09-02 00:38:55 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 315 ms / 5,000 ms |
コード長 | 877 bytes |
コンパイル時間 | 16,003 ms |
コンパイル使用メモリ | 439,328 KB |
実行使用メモリ | 52,048 KB |
最終ジャッジ日時 | 2024-11-30 02:16:09 |
合計ジャッジ時間 | 17,880 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 307 ms
51,968 KB |
testcase_01 | AC | 304 ms
51,848 KB |
testcase_02 | AC | 315 ms
51,744 KB |
testcase_03 | AC | 311 ms
51,808 KB |
testcase_04 | AC | 314 ms
52,008 KB |
testcase_05 | AC | 313 ms
51,744 KB |
testcase_06 | AC | 307 ms
51,960 KB |
testcase_07 | AC | 309 ms
51,960 KB |
testcase_08 | AC | 307 ms
51,924 KB |
testcase_09 | AC | 306 ms
52,048 KB |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
fun main(args: Array<String>) { val inputCount = readLine()!!.toInt() val noList = mutableSetOf<Int>() val yesList = mutableListOf<Int>() (1..inputCount).forEach { val inpt = readLine()!!.split(" ") val list = inpt.dropLast(1).map { it.toInt() } if(inpt.last().equals("NO")) { noList.addAll(list) } else { if(yesList.size == 0) { yesList.addAll(list) } else { val tmp = yesList.filter { list.contains(it) } yesList.clear() yesList.addAll(tmp) } } } val tmp = yesList.filter { !noList.contains(it) } yesList.clear() yesList.addAll(tmp) val target = (0..9).filter { !noList.contains(it) } if(target.size == 1) { println(target[0]) return } println(yesList[0]) }