結果

問題 No.712 赤旗
ユーザー taktak
提出日時 2018-07-27 17:17:41
言語 F#
(F# 4.0)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 11,655 ms
コンパイル使用メモリ 188,400 KB
実行使用メモリ 34,604 KB
最終ジャッジ日時 2024-07-01 03:32:56
合計ジャッジ時間 14,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
33,864 KB
testcase_01 AC 341 ms
34,112 KB
testcase_02 AC 339 ms
34,248 KB
testcase_03 AC 339 ms
34,604 KB
testcase_04 AC 343 ms
34,572 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (411 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let R () = stdin.ReadLine()

let N, M = 
    let t = R().Split() |> Array.map int
    t.[0], t.[1]
let A = Array.init N (fun _ -> R())

let countWhite (line:string) =
    line.ToCharArray()
    |> Array.where(fun x -> x = 'W')
    |> Array.length
    
let ans = A |> Array.sumBy(countWhite)

ans |> printfn "%i"
0