結果

問題 No.712 赤旗
ユーザー akakimidoriakakimidori
提出日時 2018-07-13 22:23:36
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-10-09 05:13:39
合計ジャッジ時間 581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 0 ms
6,816 KB
testcase_04 AC 0 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘run’:
main.c:13:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |   scanf("%d%d",&n,&m);
      |   ^~~~~~~~~~~~~~~~~~~
main.c:18:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |     scanf("%s",s);
      |     ^~~~~~~~~~~~~

ソースコード

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