結果

問題 No.712 赤旗
ユーザー tokutaro
提出日時 2020-03-21 10:16:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 66,676 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-18 00:22:38
合計ジャッジ時間 984 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;

int main() {
    int N,M;
    cin >>N>>M;
    int cnt = 0;
    for (int i = 0; i < N; i++) {
        string s;
        cin >> s;
        cnt += count(s.begin(), s.end(), 'W');
    }
    cout << cnt << endl;
    return 0;
}
0