結果

問題 No.24 数当てゲーム
ユーザー HujiLeeHujiLee
提出日時 2016-12-24 23:18:35
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 929 ms / 5,000 ms
コード長 1,428 bytes
コンパイル時間 10,018 ms
コンパイル使用メモリ 273,096 KB
実行使用メモリ 65,884 KB
最終ジャッジ日時 2024-06-29 21:59:00
合計ジャッジ時間 20,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 906 ms
65,544 KB
testcase_01 AC 924 ms
65,740 KB
testcase_02 AC 929 ms
65,720 KB
testcase_03 AC 917 ms
65,884 KB
testcase_04 AC 917 ms
65,592 KB
testcase_05 AC 925 ms
65,772 KB
testcase_06 AC 921 ms
65,612 KB
testcase_07 AC 924 ms
65,624 KB
testcase_08 AC 918 ms
65,656 KB
testcase_09 AC 906 ms
65,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable
import scala.io.StdIn

/**
  * Created by Administrator on 2016/12/24 0024.
  */
object Sub {
  def intersection(arrSet: mutable.HashSet[Array[Int]]): mutable.HashSet[Int] = {
    var count = 0
    var set = new mutable.HashSet[Int]()

    for(arr<-arrSet){
      if(count==0){
        for(i<-arr){
          set.add(i)
        }
      }else{
        set={
          val tempSet = new mutable.HashSet[Int]()
          for(i<-arr){
            if(set.contains(i)){
              tempSet.add(i)
            }
          }
          tempSet
        }
      }
      count+=1
    }
    set
  }

  def intersection(intSet: mutable.HashSet[Int], numbers: mutable.TreeSet[Int]): Int = {
    for(i<-numbers){
      if(intSet.contains(i)){
        return i
      }
    }
    return  -1
  }
}

object Main extends App {
  val numbers = new mutable.TreeSet[Int]()
  for (i <- 0 to 9) {
    numbers += i
  }
  val count = StdIn.readInt()
  val yesSet = new mutable.HashSet[Array[Int]]()
  for (_ <- 1 to count) {
    val input = StdIn.readLine().split(" ")
    val array = input.toList.slice(0, 4).toArray.map(i => i.toInt)
    if (input.last == "YES") {
      yesSet.add(array)
    }
    else {
      for (i <- array) {
        numbers.remove(i)
      }
    }
  }
  if (yesSet.size > 0) {
    println(Sub.intersection(Sub.intersection(yesSet), numbers))
  } else {
    println(numbers.toArray.apply(0))
  }

}
0