結果

問題 No.712 赤旗
ユーザー ut96ut96
提出日時 2018-07-23 11:47:51
言語 Elixir
(1.16.2)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 1,089 ms
コンパイル使用メモリ 62,976 KB
実行使用メモリ 54,064 KB
最終ジャッジ日時 2024-06-09 22:03:19
合計ジャッジ時間 4,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
53,992 KB
testcase_01 AC 526 ms
53,804 KB
testcase_02 AC 528 ms
53,760 KB
testcase_03 AC 522 ms
53,940 KB
testcase_04 AC 540 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [n, m] = IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer/1)
    ans = for _ <- 1..n do
      IO.gets("")
      |> String.slice(0..m-1)
      |> String.to_charlist
      |> Enum.count(&(&1 === ?W))
    end
    |> Enum.sum
    IO.puts ans
  end
end
0