結果
問題 | No.712 赤旗 |
ユーザー | engawadeeeeesu |
提出日時 | 2018-07-21 01:28:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 941 bytes |
コンパイル時間 | 1,351 ms |
コンパイル使用メモリ | 158,664 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 19:45:45 |
合計ジャッジ時間 | 1,823 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> using namespace std; typedef long long int lli; typedef pair<int, int> ii; template<class T>bool chmax(T &a, const T &b) { if( a < b ) { a = b; return 1; } return 0;} template<class T>bool chmin(T &a, const T &b) { if( b < a ) { a = b; return 1; } return 0;} #ifdef LOCAL #define eprintf(...) printf(__VA_ARGS__) #else #define eprintf(...) 1 #endif #define ROUNDUP(a, b) ( ((a) + ((b) - 1) ) / (b)) #define SET_ZERO(a) ( memset((a), 0, sizeof(a))) #define SET_NUM_ARRAY(a,b) ( memset((a), b, sizeof(a))) //#define int long long int //dont forget to change int to signed const int INT_INF = 1000000007; int main() { int N, M; cin >> N >> M; int ctr = 0; for (int i = 0; i < N; i++) { char s[59]; cin >> s; for (int j = 0; j < M; j++) { if (s[j] == 'W') { ctr++; } } } cout << ctr << endl; return 0; }