結果
問題 |
No.712 赤旗
|
ユーザー |
|
提出日時 | 2019-08-28 21:17:44 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 459 bytes |
コンパイル時間 | 1,719 ms |
コンパイル使用メモリ | 169,216 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-17 16:33:22 |
合計ジャッジ時間 | 2,234 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 |
ソースコード
/** @file 712.cpp @title No.712 赤旗 - yukicoder @url https://yukicoder.me/problems/no/712 **/ #include <bits/stdc++.h> using namespace std; typedef long long LL; #define ALL(obj) (obj).begin(), (obj).end() #define REP(i, N) for (int i = 0; i < (N); ++i) int main() { int N, M; cin >> N >> M; vector<string> A(N, ""); int ans = 0; REP(i, N) { cin >> A[i]; ans += count(ALL(A[i]), 'W'); } cout << ans << endl; return 0; }