結果
| 問題 |
No.712 赤旗
|
| コンテスト | |
| ユーザー |
himo
|
| 提出日時 | 2019-09-18 17:56:12 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 230 bytes |
| コンパイル時間 | 1,399 ms |
| コンパイル使用メモリ | 157,652 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-08 11:29:32 |
| 合計ジャッジ時間 | 1,885 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 WA * 2 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
int main(){
int n,m;
cin >> n >>m;
int ans =0;
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
char a;
cin >> a;
if(a!='R')ans++;
}
}
cout << ans <<endl;
}
himo