結果
問題 | No.712 赤旗 |
ユーザー | tatyam |
提出日時 | 2018-07-13 22:28:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 709 bytes |
コンパイル時間 | 1,962 ms |
コンパイル使用メモリ | 201,892 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 05:16:46 |
合計ジャッジ時間 | 2,312 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,816 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; #define rep(i,l,r) for(ll i=(l);i<(r);i++) #define INF (ll)1e18 struct aaa{aaa(){cin.tie(0); ios::sync_with_stdio(0); cout<<fixed<<setprecision(10);};}aaaaaaa; inline void in() {} template <class Head, class... Tail> inline void in(Head&& head,Tail&&... tail){ cin>>head; in(move(tail)...); } template <class T> inline void out(T t) { cout<<t<<'\n'; } template <class Head, class... Tail> inline void out(Head head,Tail... tail){ cout<<head<<' '; out(move(tail)...); } int main(){ string s; ll ans=0,m,n; cin>>m>>n; rep(i,0,n){ cin>>s; rep(j,0,m)if(s[j]=='W')ans++; } cout<<ans; }