結果

問題 No.712 赤旗
ユーザー wotsushiwotsushi
提出日時 2018-07-22 23:25:07
言語 Elixir
(1.16.2)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 1,088 ms
コンパイル使用メモリ 63,544 KB
実行使用メモリ 55,836 KB
最終ジャッジ日時 2024-06-09 22:02:26
合計ジャッジ時間 4,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 548 ms
54,268 KB
testcase_01 AC 536 ms
55,836 KB
testcase_02 AC 546 ms
54,440 KB
testcase_03 AC 558 ms
54,108 KB
testcase_04 AC 545 ms
54,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
    warning: variable "m" is unused (if the variable is not meant to be used, prefix it with an underscore)
    │
  3 │     [n, m] = IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer/1)
    │         ~
    │
    └─ Main.exs:3:9: Main.main/0

ソースコード

diff #

defmodule Main do
  def main do
    [n, m] = IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer/1)
    a = for _ <- 1..n, do: IO.gets("") |> String.trim

    ans =
      a
      |> Enum.flat_map(&String.graphemes/1)
      |> Enum.map(&(
          case &1 do
            "W" -> 1
            _ -> 0
          end
        ))
      |> Enum.sum

    IO.puts ans
  end
end
0