結果

問題 No.82 市松模様
ユーザー gemmarogemmaro
提出日時 2020-04-17 09:24:50
言語 Elixir
(1.16.2)
結果
AC  
実行時間 558 ms / 5,000 ms
コード長 505 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 63,208 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-06-09 23:28:16
合計ジャッジ時間 7,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
54,124 KB
testcase_01 AC 556 ms
53,980 KB
testcase_02 AC 544 ms
54,128 KB
testcase_03 AC 544 ms
54,256 KB
testcase_04 AC 542 ms
54,212 KB
testcase_05 AC 539 ms
54,092 KB
testcase_06 AC 540 ms
53,888 KB
testcase_07 AC 549 ms
54,232 KB
testcase_08 AC 546 ms
54,068 KB
testcase_09 AC 558 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.split()
    |> solve
    |> IO.puts()
  end

  defp solve([w, h, c]) do
    d =
      cond do
        c == "B" -> "W"
        true -> "B"
      end

    0..((h |> String.to_integer()) - 1)
    |> Enum.map(fn i ->
      0..((w |> String.to_integer()) - 1)
      |> Enum.map(fn j ->
        cond do
          (i - j) |> rem(2) == 0 -> c
          true -> d
        end
      end)
      |> Enum.join()
    end)
    |> Enum.join("\n")
  end
end
0