結果

問題 No.240 ナイト散歩
ユーザー ともきともき
提出日時 2015-07-10 23:05:53
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,018 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 10,393 ms
コンパイル使用メモリ 263,620 KB
実行使用メモリ 66,748 KB
最終ジャッジ日時 2024-06-29 02:22:03
合計ジャッジ時間 46,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,013 ms
64,896 KB
testcase_01 AC 1,007 ms
64,684 KB
testcase_02 AC 990 ms
64,916 KB
testcase_03 AC 996 ms
65,088 KB
testcase_04 AC 1,000 ms
65,036 KB
testcase_05 AC 1,009 ms
64,916 KB
testcase_06 AC 1,006 ms
64,948 KB
testcase_07 AC 1,007 ms
65,064 KB
testcase_08 AC 991 ms
65,000 KB
testcase_09 AC 1,004 ms
64,904 KB
testcase_10 AC 1,018 ms
65,044 KB
testcase_11 AC 994 ms
64,928 KB
testcase_12 AC 1,007 ms
65,024 KB
testcase_13 AC 1,013 ms
64,960 KB
testcase_14 AC 1,010 ms
64,996 KB
testcase_15 AC 1,004 ms
65,068 KB
testcase_16 AC 1,013 ms
66,748 KB
testcase_17 AC 1,010 ms
65,088 KB
testcase_18 AC 1,015 ms
65,016 KB
testcase_19 AC 1,007 ms
65,136 KB
testcase_20 AC 1,011 ms
64,896 KB
testcase_21 AC 1,015 ms
65,048 KB
testcase_22 AC 1,017 ms
64,956 KB
testcase_23 AC 1,009 ms
64,916 KB
testcase_24 AC 975 ms
65,052 KB
testcase_25 AC 991 ms
65,000 KB
testcase_26 AC 988 ms
64,964 KB
testcase_27 AC 1,000 ms
64,984 KB
testcase_28 AC 986 ms
65,072 KB
testcase_29 AC 1,000 ms
65,060 KB
testcase_30 AC 1,006 ms
65,076 KB
testcase_31 AC 1,010 ms
65,092 KB
testcase_32 AC 986 ms
64,952 KB
testcase_33 AC 999 ms
65,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine
import scala.collection.mutable.PriorityQueue
import scala.annotation.tailrec

// PriorityQueue[Long]()(scala.math.Ordering.Long.reverse)
package Lib {
  object EnRich {
    implicit class AString(val self : String) extends AnyVal {
      def splitToIntArray = self.split(" ").map(_.toInt)
    }
  }
}

import Lib.EnRich._
object Main {
  def go(x : Int, y : Int, k : Int = 3) : Set[(Int,Int)] = {
    if(k == 0) Set((x,y))
    else {
      (for(i <- Vector(-2,-1,1,2);
          j <- Vector(-2,-1,1,2);
          if Math.abs(i) + Math.abs(j) == 3)
       yield (i,j)
      ).map({case (i,j) => go(x+i,y+j,k-1)})
      .fold(Set[(Int,Int)]())(_ ++ _) + ((x,y))
    }
  }
  def main(args : Array[String]) : Unit = {
    val (x,y) = {
      val xy = readLine.splitToIntArray
      (xy(0),xy(1))
    }
    val ans = if(go(0,0,3) contains (x,y)) "YES" else "NO"
    println(ans)
  }
}
0