結果

問題 No.240 ナイト散歩
ユーザー くわいくわい
提出日時 2015-09-21 00:51:06
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 967 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 10,471 ms
コンパイル使用メモリ 262,108 KB
実行使用メモリ 63,668 KB
最終ジャッジ日時 2024-11-16 17:12:19
合計ジャッジ時間 41,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 924 ms
63,516 KB
testcase_01 AC 953 ms
63,508 KB
testcase_02 AC 922 ms
63,544 KB
testcase_03 AC 921 ms
63,412 KB
testcase_04 AC 911 ms
63,300 KB
testcase_05 AC 967 ms
63,280 KB
testcase_06 AC 907 ms
63,312 KB
testcase_07 AC 890 ms
63,440 KB
testcase_08 AC 915 ms
63,388 KB
testcase_09 AC 914 ms
63,356 KB
testcase_10 AC 925 ms
63,320 KB
testcase_11 AC 895 ms
63,556 KB
testcase_12 AC 918 ms
63,668 KB
testcase_13 AC 919 ms
63,292 KB
testcase_14 AC 928 ms
63,592 KB
testcase_15 AC 921 ms
63,540 KB
testcase_16 AC 912 ms
63,600 KB
testcase_17 AC 918 ms
63,532 KB
testcase_18 AC 919 ms
63,372 KB
testcase_19 AC 949 ms
63,516 KB
testcase_20 AC 904 ms
63,464 KB
testcase_21 AC 930 ms
63,304 KB
testcase_22 AC 910 ms
63,248 KB
testcase_23 AC 913 ms
63,280 KB
testcase_24 AC 922 ms
63,664 KB
testcase_25 AC 906 ms
63,628 KB
testcase_26 AC 933 ms
63,268 KB
testcase_27 AC 921 ms
63,288 KB
testcase_28 AC 955 ms
63,396 KB
testcase_29 AC 918 ms
63,420 KB
testcase_30 AC 924 ms
63,540 KB
testcase_31 AC 922 ms
63,196 KB
testcase_32 AC 921 ms
63,580 KB
testcase_33 AC 921 ms
63,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Problem240 {
  def main(args: Array[String]) = {
    val sc = new Scanner(System.in)
    val x = sc.nextInt()
    val y = sc.nextInt()

    val result = proc(x, y, 3)
    println(result)
  }

  def proc(targetX: Int, targetY: Int, stepLimit: Int): String = {
    val dxy = List((-2, -1), (-2, 1), (-1, -2), (-1, 2), (1, -2), (1, 2), (2, -1), (2, 1))
    var found = false

    def procR(x: Int, y: Int, steps: Int): Unit = {
      if (x == targetX && y == targetY) {
        found = true
        return
      }

      if (steps == stepLimit || found) {
        return
      }

      for ((dx, dy) <- dxy) {
        procR(x + dx, y + dy, steps + 1)
      }
    }

    procR(0, 0, 0)

    if (found) {
      "YES"
    } else {
      "NO"
    }
  }
}
0