結果

問題 No.712 赤旗
ユーザー akakimidoriakakimidori
提出日時 2018-07-13 22:23:36
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 25,144 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-07-30 09:43:01
合計ジャッジ時間 1,577 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 0 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
#include<math.h>

typedef long long int int64;

#define MAX(a,b) ((a)>(b)?(a):(b))
#define MIN(a,b) ((a)<(b)?(a):(b))
#define ABS(a) ((a)>(0)?(a):-(a))

void run(void){
  int n,m;
  scanf("%d%d",&n,&m);
  char s[51];
  int cnt=0;
  int i;
  for(i=0;i<n;i++){
    scanf("%s",s);
    int j;
    for(j=0;j<m;j++){
      if(s[j]!='R') cnt++;
    }
  }
  printf("%d\n",cnt);
}

int main(void){
  run();
  return 0;
}
0