結果

問題 No.240 ナイト散歩
ユーザー gemmarogemmaro
提出日時 2020-04-22 20:13:50
言語 Elixir
(1.16.2)
結果
AC  
実行時間 591 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 990 ms
コンパイル使用メモリ 62,672 KB
実行使用メモリ 55,384 KB
最終ジャッジ日時 2024-06-09 23:48:21
合計ジャッジ時間 21,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 545 ms
54,128 KB
testcase_01 AC 553 ms
55,384 KB
testcase_02 AC 563 ms
54,992 KB
testcase_03 AC 545 ms
54,120 KB
testcase_04 AC 574 ms
53,736 KB
testcase_05 AC 570 ms
54,220 KB
testcase_06 AC 547 ms
54,268 KB
testcase_07 AC 562 ms
54,776 KB
testcase_08 AC 553 ms
54,180 KB
testcase_09 AC 560 ms
54,048 KB
testcase_10 AC 591 ms
54,980 KB
testcase_11 AC 553 ms
54,196 KB
testcase_12 AC 541 ms
55,128 KB
testcase_13 AC 559 ms
54,296 KB
testcase_14 AC 558 ms
53,744 KB
testcase_15 AC 537 ms
54,172 KB
testcase_16 AC 551 ms
54,280 KB
testcase_17 AC 527 ms
54,012 KB
testcase_18 AC 542 ms
54,332 KB
testcase_19 AC 540 ms
53,992 KB
testcase_20 AC 559 ms
54,908 KB
testcase_21 AC 565 ms
54,208 KB
testcase_22 AC 533 ms
54,264 KB
testcase_23 AC 540 ms
54,260 KB
testcase_24 AC 528 ms
53,744 KB
testcase_25 AC 546 ms
54,400 KB
testcase_26 AC 563 ms
53,924 KB
testcase_27 AC 544 ms
54,456 KB
testcase_28 AC 532 ms
53,868 KB
testcase_29 AC 544 ms
54,212 KB
testcase_30 AC 530 ms
54,124 KB
testcase_31 AC 522 ms
54,404 KB
testcase_32 AC 519 ms
54,124 KB
testcase_33 AC 521 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> String.split()
    |> Enum.map(&String.to_integer/1)
    |> solve
    |> IO.puts()
  end

  def solve([x, y]) do
    if {x, y} in locations(), do: "YES", else: "NO"
  end

  def locations do
    locations1 = [{0, 0}] |> search_rec([])
    locations2 = locations1 |> search_rec([])
    locations3 = locations2 |> search_rec([])

    [locations1, locations2, locations3]
    |> Enum.concat()
    |> Enum.uniq()
  end

  def search_rec([], result) do
    result
  end

  def search_rec([{x, y} | t], result) do
    t
    |> search_rec(
      result
      |> Enum.concat([
        {x - 2, y - 1},
        {x - 2, y + 1},
        {x - 1, y - 2},
        {x - 1, y + 2},
        {x + 1, y - 2},
        {x + 1, y + 2},
        {x + 2, y - 1},
        {x + 2, y + 1}
      ])
    )
  end
end
0