結果
| 問題 | No.712 赤旗 |
| コンテスト | |
| ユーザー |
himo
|
| 提出日時 | 2019-09-18 17:56:12 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 230 bytes |
| 記録 | |
| コンパイル時間 | 825 ms |
| コンパイル使用メモリ | 174,004 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-12 17:12:43 |
| 合計ジャッジ時間 | 1,632 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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